# Docs pages support Markdown responses

**Published:** January 13, 2026 | **Authors:** Anthony Shew

---

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**
```bash
curl -sL https://vercel.com/docs \
  --header 'Accept: text/markdown' \
  | tail -n 10
```

---

📚 **More updates:** [View all changelog entries](/changelog/sitemap.md) | [Blog](/blog/sitemap.md)