New FeatureJanuary 10, 2026
LLMs.txt Support
AI coding assistants can now access our full documentation in a single, machine-readable text file. This follows the llms.txt specification for making docs AI-accessible.
Access the documentation
Fetch the complete documentation at:
https://allscreenshots.com/llms-full.txt
Use cases
- AI coding assistants — Tools like GitHub Copilot, Cursor, or Claude can fetch this file to provide accurate API suggestions
- Custom integrations — Build AI-powered tools that understand the AllScreenshots API
- Semantic search — Index the content with embeddings for documentation search
Example
import requests
docs = requests.get("https://allscreenshots.com/llms-full.txt").text
# Use with your AI model for context-aware assistanceSee the LLM.txt documentation page for more details on the format and best practices.