Last updated frontmatter property

You can now display a “Last updated” message in the page footer using the new last-updated frontmatter property. This helps readers know when the content was last modified.

1---
2title: API Reference
3last-updated: December 9, 2025
4---

The date is displayed as-is in small text below the on-page feedback, so you can use any date format you prefer.

Learn more about the last-updated frontmatter property.

You can now use the <Footer> component in your API endpoint descriptions to add content that renders at the bottom of the page, below the response section. This is useful for related links, additional context, or notes that make more sense at the end of the endpoint documentation.

api/openapi.yml
1paths:
2 /plants:
3 get:
4 summary: List all plants
5 description: |
6 Get a list of all plants in the system.
7
8 <Footer>
9 ## Related endpoints
10
11 - [Create a plant](/api-reference/plants/create)
12 - [Update a plant](/api-reference/plants/update)
13 </Footer>

Learn more about adding footers and other Markdown content to your API Reference.