Write Markdown content in your API Reference
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.
Adding Markdown content to endpoints
You can include Markdown content in your API definition using the description field in OpenAPI. This includes callouts, code blocks, and other components.
You can also use the <Footer> component to add content that renders at the bottom of an API Reference page, below the response section. The content inside the <Footer> component can include any Markdown content or components, such as links, callouts, or code blocks.
API link syntax
Use api: link syntax to link to API endpoints or API Reference sections in any Markdown content. Fern resolves these links at build time, so you don’t need to hardcode slugs.
Link to an endpoint
Use api:METHOD/path, where METHOD is an HTTP method (GET, POST, PUT, PATCH, DELETE) and /path is the endpoint path from your API definition. Path parameters use curly braces, such as api:GET/v2/payments/{paymentId}.
For projects with multiple APIs, prefix with the API name: api:API-NAME:METHOD/path.
Link to the root of an API Reference section
Use api:apiName, where apiName matches the API name in your generators.yml file. This is useful when your project has multiple APIs and you want to link to the root landing page of a specific API Reference.
Here’s how the api: link syntax looks inside API definitions:
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:
By including the summary field, the API Reference section title will link to the api-summary.mdx page.
Adding Markdown content between 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: