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)
      • 身份验证
      • 服务器
      • 同步您的规范
        • 概览
        • 受众
        • 可用性
        • 请求与响应示例
        • 忽略元素
        • 服务器名称
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
预约演示登录免费开始
AsyncAPI扩展

请求和响应示例

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

可用性

下一个

忽略操作、通道或模式

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

asyncapi.yml
1components:
2 messages:
3 UserEvent:
4 contentType: application/json
5 payload:
6 $ref: '#/components/schemas/User'
7 x-fern-examples:
8 - name: NewUserSignup
9 summary: Example of a new user signup event
10 payload:
11 id: "user_123"
12 email: "john@example.com"
13 name: "John Doe"
14 status: "active"
15 - name: UserDeactivation
16 summary: Example of user deactivation event
17 payload:
18 id: "user_456"
19 email: "jane@example.com"
20 name: "Jane Smith"
21 status: "inactive"