For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Book a demoLog inStart for free
  • Getting started
    • Overview
    • How it works
    • Quickstart
    • Project structure
    • Customer showcase
    • Changelog
  • Configuration
    • Overview
    • Site-level settings
    • Page-level settings
  • Writing content
    • Markdown basics
    • Rich media in Markdown
    • Fern Editor
    • Reusable snippets
  • AI features
    • Overview
    • Fern Writer
    • AI-generated examples
    • Markdown access
      • Overview
      • Customize LLM output
      • Agent directives
      • Analytics and integration
    • MCP server
    • API catalog discovery
  • Public API
    • GETJWT from Fern API key
    • GETAlgolia search credentials
    • GETCurrent user information
  • Fern Writer API
    • GETGet Fern Writer Install Link
Checking status...
SOC2Soc 2 Type II
© 2026 Fern • Birch Solutions, Inc., a Postman company

Documentation

SDKsDocsAsk FernCLI Reference

API Definitions

OpenAPIAsyncAPIOpenRPCgRPC

Resources

BlogSupportPricing

Company

Brand KitPrivacy PolicyTerms of Service
LogoLogo
Book a demoLog inStart for free
On this page
  • Track LLM traffic
  • Surface endpoints to readers
AI featuresllms-txt

Analytics and integration

||View as Markdown|
Was this page helpful?
Edit this page
Previous

Agent directives

Next

MCP server

llms.txt and llms-full.txt are generated automatically for your site, but how readers and AI tools discover them is up to you. Track usage in the Fern Dashboard and surface endpoints directly in your docs.

Track LLM traffic

The Fern Dashboard provides analytics for llms.txt usage including:

  • Traffic by LLM provider (Claude, ChatGPT, Cursor, etc.)
  • Page-level breakdowns of bot vs. human visitors for Markdown and llms.txt files

Surface endpoints to readers

To make endpoints discoverable to human readers, add buttons or navigation links:

Add a button for SDK docs

Add a button to your SDK docs that links to the llms-full.txt for your API Reference. Use lang to filter code examples to one language, and excludeSpec=true to exclude the raw OpenAPI specification.

Markdown
1<Button href="/api-reference/llms-full.txt?lang=python&excludeSpec=true" target="_blank">
2 Open Python API Reference for LLMs
3</Button>

This gives users a clean, language-specific output they can feed to AI tools when writing code.

Add a dropdown for llms-full.txt

Add a dropdown in your navbar that links to different filtered versions of llms-full.txt, making it easy for users to access LLM-optimized documentation for their preferred language.

docs.yml
1navbar-links:
2 - type: dropdown
3 text: LLMs
4 icon: fa-solid fa-robot
5 links:
6 - text: Full docs
7 href: /llms-full.txt
8 - text: Python SDK
9 href: /api-reference/llms-full.txt?lang=python&excludeSpec=true
10 - text: TypeScript SDK
11 href: /api-reference/llms-full.txt?lang=typescript&excludeSpec=true
12 - text: Go SDK
13 href: /api-reference/llms-full.txt?lang=go&excludeSpec=true