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

Ignoring methods or schemas

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

Request + response examples

Next

SDK Method Names

Use x-fern-ignore to exclude specific methods or schemas from SDK generation:

openrpc.yml
1methods:
2 - name: debug.internalMethod
3 summary: Internal debugging method
4 x-fern-ignore: true
5 params:
6 - name: debugData
7 schema:
8 type: object
9 result:
10 name: debugResult
11 schema:
12 type: object
13 - name: test.experimentalFeature
14 summary: Experimental feature (not ready for public use)
15 x-fern-ignore: true
16 params: []
17 result:
18 name: result
19 schema:
20 type: string