For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Book a demoLog inStart for free
  • Overview
    • What is an API definition?
    • Project structure
      • Overview
      • Overrides
      • Authentication
      • Servers
      • Sync your specification
        • Overview
        • Audiences
        • Availability
        • Request + response examples
        • Ignoring elements
        • SDK method names
        • SDK group names
        • Server names
Checking status...
SOC2Soc 2 Type II
© 2026 Fern • Birch Solutions, Inc., a Postman company

Documentation

SDKsDocsAsk FernCLI Reference

API Definitions

OpenAPIAsyncAPIOpenRPCgRPC

Resources

BlogSupportPricing

Company

Brand KitPrivacy PolicyTerms of Service
LogoLogo
Book a demoLog inStart for free
OpenRPCExtensions

Availability

||View as Markdown|
Was this page helpful?
Edit this page
Previous

Use audiences to filter your API

Next

Request + response examples

Mark features as available in specific SDK versions:

openrpc.yml
1methods:
2 - name: beta.advancedSearch
3 summary: Advanced search functionality
4 x-fern-availability:
5 status: beta
6 message: "This feature is in beta and may change"
7 params:
8 - name: searchQuery
9 schema:
10 $ref: '#/components/schemas/AdvancedSearchQuery'
11 result:
12 name: searchResults
13 schema:
14 $ref: '#/components/schemas/SearchResults'