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

SDK group names

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

SDK Method Names

Next

Server names

Group related methods in the SDK:

openrpc.yml
1methods:
2 - name: user.create
3 summary: Create user
4 x-fern-sdk-group-name: users
5 params: [...]
6 result: {...}
7
8 - name: user.get
9 summary: Get user
10 x-fern-sdk-group-name: users
11 params: [...]
12 result: {...}
13
14 - name: order.create
15 summary: Create order
16 x-fern-sdk-group-name: orders
17 params: [...]
18 result: {...}

This generates SDKs with grouped methods:

1client.users.create(...)
2client.users.get(...)
3client.orders.create(...)