Skip to main content

Documentation Index

Fetch the complete documentation index at: https://api-docs.tiro.ooo/llms.txt

Use this file to discover all available pages before exploring further.

Tiro gives you two ways to connect: the REST API for programmatic access from your backend, or the MCP Server for AI clients like Claude and ChatGPT.

Get your API key

Go to the Tiro Platform API Keys page and create a key.
2

Create a key

Click Create New API Key. Copy the full key including the dot — abc123.xR7mK9pL2qW4....
3

Store it

Save it as an environment variable. You can’t view it again after closing the creation dialog.
Store your API key in an environment variable. Never hardcode it or commit it.

Make your first request

Fetch your notes:
curl -H "Authorization: Bearer $TIRO_API_KEY" \
     -H "Content-Type: application/json" \
     https://api.tiro.ooo/v1/external/notes
Tiro returns a paginated list of your notes. Each object contains the title, creation date, processing status, and a guid you use to fetch transcripts, summaries, and documents. Now that you have a list, read the Note Data Model to understand what each guid unlocks — transcripts, summaries, documents, and folders.