Allscreenshots Docs

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

EndpointDescription
/llms-full.txtComplete 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
# ...

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:

  1. Fetch fresh content — The documentation is updated regularly
  2. Cache responsibly — Cache for a reasonable period (e.g., 1 hour) to reduce load
  3. Respect rate limits — Don't fetch more often than necessary

This implementation follows the llms.txt specification for making documentation AI-accessible.

On this page