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.
Slack communityLog inBook a demo
  • Getting Started
    • Overview
    • Quickstart
    • Customer Showcase
  • Writing Content
    • Markdown
    • Visual Editor
    • Reusable Markdown
    • Custom React Components
      • Generate API Reference
      • SDK Snippets
      • HTTP Snippets
      • Endpoint Errors
      • Audiences
      • Customize API Reference Layout
      • Write Markdown in API Reference
      • Generate Webhook Reference
      • Multiple Server URLs
      • Generate WebSocket Reference
      • Generate OpenRPC Reference
    • Changelog
LogoLogo
Slack communityLog inBook a demo
On this page
  • In OpenAPI
  • In Fern Definition
  • Adding a summary page
  • Adding Markdown content between endpoints
API References

Write Markdown content in your API Reference

Was this page helpful?
Previous

Generate your Webhook Reference

Next
Built with

Fern Docs allows you to write Markdown content in your API Reference documentation. This feature is useful for providing additional context, examples, or explanations for your API endpoints. There are a few ways to accomplish this:

In OpenAPI

If you’re using OpenAPI to define your API, you can include Markdown content in your OpenAPI Specification.

For example, you can include a callout in the description field of an endpoint:

api/openapi.yml
1paths:
2 /pets:
3 get:
4 summary: List all pets
5 description: |
6 Get a list of all pets in the system.
7
8 <Note>This endpoint requires authentication.</Note>

In Fern Definition

If you’re using Fern’s simpler API definition format, you can include Markdown content in your API definition.

For example, you can include a callout in the docs field of an endpoint:

api/service.yml
1service:
2 endpoints:
3 get:
4 path: /pets
5 docs: |
6 Get a list of all pets in the system.
7
8 <Note>This endpoint requires authentication.</Note>

Adding a summary page

You can also create a Markdown page that provides an overview of your API Reference. This page can include general information about your API, such as authentication requirements, rate limits, or other important details.

To add a summary page, create a Markdown file in your fern/ folder and link to it in your docs.yml file:

docs.yml
1navigation:
2 - api: API Reference
3 summary: ./pages/api-summary.mdx

By including the summary field, the API Reference section title will link to the api-summary.mdx page.

Adding Markdown content between endpoints

In addition to adding Markdown content to individual endpoints, you can also include Markdown content between endpoints in your API Reference. This content can provide context or explanations that apply to multiple endpoints.

This feature requires you to use the layout field in your docs.yml file, which is described in the Customize your API Reference guide.

To add Markdown content between endpoints, create a Markdown file in your fern/ folder and link to it in your docs.yml file:

docs.yml
1navigation:
2 - api: API Reference
3 layout:
4 - pet:
5 - page: Pet CRUD
6 path: ./pages/pet-crud.mdx
7 - addPet
8 - updatePet
9 - deletePet
10 - page: Pet Search
11 path: ./pages/pet-search.mdx
12 - findPets
13 - findPetsByStatus
14 - findPetsByTags
15 - findPetsByType
16 - findPetsByBreed