llms.txt
Last updated
This documentation is designed to be consumed by AI assistants, enabling them to help you build integrations with the Viio platform.
The llms.txt standard provides a simple way for AI assistants to access documentation in a format optimized for large language models.
Endpoints
/llms.txt
A concise, structured overview of the documentation with links to individual sections.
https://developers.viio.io/llms.txt
This endpoint returns:
- Documentation title and description
- List of available sections
- Links to detailed documentation pages
/llms-full.txt
Complete documentation content in a single file, ideal for AI assistants that can process large contexts.
https://developers.viio.io/llms-full.txt
This endpoint includes the full content of all documentation pages, reducing the need for multiple requests.
Raw Markdown
Individual documentation pages are also available as raw Markdown:
https://developers.viio.io/raw/<path>.md
For example:
/raw/getting-started/authentication.md/raw/graphql-api/querying.md
Usage Examples
With cURL
# Get documentation overview
curl https://developers.viio.io/llms.txt
# Get full documentation
curl https://developers.viio.io/llms-full.txt
# Get specific page as markdown
curl https://developers.viio.io/raw/graphql-api/querying.md
In AI Prompts
When working with an AI assistant, you can reference these URLs directly:
Read the Viio API documentation from https://developers.viio.io/llms-full.txt and help me write a query to fetch all applications.
What's Included
The AI-accessible documentation covers:
- Getting Started — Authentication, API basics
- GraphQL API — Querying, mutations, best practices
- GQL Schema Reference — Types, inputs, enums, scalars
- MCP Server — Tools for SaaS portfolio analysis
About the Standard
The llms.txt specification was proposed by Jeremy Howard in September 2024. Unlike robots.txt which targets web crawlers at training time, llms.txt targets AI tools at inference time — when users are actively asking questions.
Learn more at llmstxt.org.