LLM.txt
Machine-readable documentation for AI assistants and language models
LLM.txt
This documentation is available in a machine-readable format designed for AI assistants and large language models (LLMs).
Access the full documentation as plain text at /llms-full.txt
What is LLM.txt?
LLM.txt is a standard format that makes documentation accessible to AI tools. Instead of parsing HTML, AI assistants can fetch a single text file containing all documentation content in a structured, easy-to-process format.
Available endpoints
| Endpoint | Description |
|---|---|
/llms-full.txt | Complete documentation in a single text file |
Format
The llms-full.txt file contains all documentation pages concatenated together. Each page includes:
- Title and URL —
# Page title (/docs/path) - Content — The full page content in Markdown format
Example structure:
# Introduction (/docs)
AllScreenshots is a powerful screenshot API...
# Quickstart (/docs/getting-started/quickstart)
Capture your first screenshot in under 5 minutes...
# Screenshots API (/docs/api-reference/screenshots)
The screenshots endpoint captures images of web pages...Use cases
AI coding assistants
Tools like GitHub Copilot, Cursor, or Claude can fetch this file to understand the AllScreenshots API and provide accurate code suggestions.
Custom AI integrations
Build your own AI-powered tools that understand the AllScreenshots documentation:
import requests
# Fetch the full documentation
response = requests.get("https://docs.allscreenshots.com/llms-full.txt")
docs_content = response.text
# Use with your AI model
# ...Documentation search
Create semantic search over the documentation by indexing the LLM.txt content with embeddings.
Best practices for AI tools
When using this documentation with AI assistants:
- Fetch fresh content — The documentation is updated regularly
- Cache responsibly — Cache for a reasonable period (e.g., 1 hour) to reduce load
- Respect rate limits — Don't fetch more often than necessary
Related standards
This implementation follows the llms.txt specification for making documentation AI-accessible.