Documentation for AI agents
Piano Analytics developers documentation are exported in formats designed for large language models, following the llmstxt.org standard. Use these files to ground coding agents, chatbots, and RAG pipelines on accurate, up-to-date reference material.
Which file should I use?
Pick the lightest file that gives your agent enough context. Indexes are cheap; full content is powerful but heavy.
Explore & route
Let your agent scan the index and fetch only the pages it needs.
llms.txtIngest everything
Load the full corpus in one request when context window allows.
llms-full.txtFocus on one area
Use a section index to keep the context lean and relevant.
- Collect data
llms-data-collection.txt - Extract data
llms-data-api.txt - Access management
llms-configuration.txt
Deep-dive one topic
Fetch a single page markdown URL from any index entry.
*.mdAvailable files
llms.txt
Master index of the entire documentation. Each entry links to a machine-readable .md page with a one-line summary.
Best for: Starting point for any AI agent — discover topics and route to the right pages.
https://developers.piano.io/analytics/llms.txtllms-full.txt
Complete documentation content in a single file, following the llmstxt.org standard.
Best for: One-shot ingestion when you need everything. Large file (~13k+ lines).
https://developers.piano.io/analytics/llms-full.txtllms-data-collection.txt
Index scoped to Collect data — SDKs, events, consent, collection API, and more.
Best for: Implementing tracking, SDK integration, or event collection.
https://developers.piano.io/analytics/llms-data-collection.txtllms-data-api.txt
Index scoped to Extract data — Reporting API v3 parameters, methods, and errors.
Best for: Building data extraction pipelines or API integrations.
https://developers.piano.io/analytics/llms-data-api.txtllms-configuration.txt
Index scoped to Access management — users, teams, and API routes.
Best for: Automating user and team provisioning via the Access Management API.
https://developers.piano.io/analytics/llms-configuration.txtPer-page markdown files
Every documentation page also has a standalone .md export. Links in the index files point to these URLs — not to the human-readable HTML pages.
Pattern: https://developers.piano.io/analytics/<route>.md
Example: data-api/getting-started/authentication.md
https://developers.piano.io/analytics/data-api/getting-started/authentication.mdQuick start
Fetch an index or a single page from the command line:
curl -s https://developers.piano.io/analytics/llms.txtcurl -s https://developers.piano.io/analytics/llms-data-collection.txtcurl -s https://developers.piano.io/analytics/data-collection/sdks/javascript.mdExample prompts
Copy and adapt these instructions for your AI tool of choice: