Skip to main content
Every page in the Checkly documentation is available as markdown. This makes it easy to feed specific documentation pages into AI assistants like Claude, ChatGPT, Cursor, or any other AI tool.
Use Checkly Skills to automatically provide your agent with up-to-date, agent-optimized documentation.

.md endpoints

Append .md to any documentation URL to get the markdown version of that page. Example:
  • HTML: https://www.checklyhq.com/docs/what-is-checkly/
  • Markdown: https://www.checklyhq.com/docs/what-is-checkly.md
The markdown version includes the full page content in plain markdown, code blocks, links preserved as markdown links, and tables formatted as markdown tables.
# Fetch documentation content with curl
curl https://www.checklyhq.com/docs/what-is-checkly.md

# Pipe directly to your clipboard
curl https://www.checklyhq.com/docs/what-is-checkly.md | pbcopy

Content negotiation

You can also request markdown by setting the Accept header to text/markdown:
curl -H "Accept: text/markdown" https://www.checklyhq.com/docs/what-is-checkly/
This is useful when integrating with tools or scripts that set request headers programmatically.

Copy as Markdown button

Every documentation page includes a Copy as Markdown button at the top of the page. Click it to copy the full page content as markdown to your clipboard. This is the fastest way to grab documentation for a specific topic and paste it into your AI assistant’s context.
Here is the Checkly Browser Checks documentation:

[paste markdown content]

Based on this, how do I set up a browser check with a custom user agent?

Additional resources