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.
预约演示登录免费开始
  • 概览
    • 什么是 API 定义?
    • 项目结构
      • 概览
      • 覆盖(Overrides)
      • 身份验证
      • 服务器
      • 同步您的规范
        • 概览
        • 受众
        • 可用性
        • 请求与响应示例
        • 忽略元素
        • SDK 方法名称
        • 服务器名称
        • 服务器名称
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
预约演示登录免费开始
OpenRPC扩展

请求 + 响应示例

||以 Markdown 格式查看|
此页面是否有帮助?
在仪表板中编辑
上一个

可用性

下一个

忽略方法或模式

为更好的 SDK 文档提供额外的示例:

openrpc.yml
1methods:
2 - name: user.create
3 summary: Create a new user
4 params:
5 - name: userData
6 schema:
7 $ref: '#/components/schemas/CreateUserRequest'
8 required: true
9 x-fern-examples:
10 - name: StandardUser
11 description: Create a regular user account
12 params:
13 userData:
14 email: "john@example.com"
15 name: "John Doe"
16 role: "user"
17 result:
18 id: "user_123"
19 email: "john@example.com"
20 name: "John Doe"
21 role: "user"
22 createdAt: "2024-01-15T10:30:00Z"
23 - name: AdminUser
24 description: Create an admin user account
25 params:
26 userData:
27 email: "admin@example.com"
28 name: "Admin User"
29 role: "admin"
30 permissions: ["read", "write", "delete"]
31 result:
32 id: "user_456"
33 email: "admin@example.com"
34 name: "Admin User"
35 role: "admin"
36 createdAt: "2024-01-15T10:30:00Z"
37 result:
38 name: user
39 schema:
40 $ref: '#/components/schemas/User'