Docs pages support Markdown responses

1 min read

You can now request Vercel documentation as Markdown by sending the Accept header with the value text/markdown.

This makes it easier to use docs content in agentic and CLI workflows, indexing pipelines, and tooling that expects text/markdown.

Markdown responses include a sitemap.md link at the end. You and your agent can use it to discover additional docs pages programmatically.

docs-markdown.sh
curl -sL https://vercel.com/docs \
--header 'Accept: text/markdown' \
| tail -n 10

Example request using the `Accept: text/markdown` header.