Skip to main content
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

Pick a workspace

Use the workspace switcher in the sidebar to choose the workspace your key should reach. The key is scoped to that workspace.
3

Create a key

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

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.
Using a personal API key from before workspaces? Those keys are deprecated and stop working on June 30, 2026. Migrate to a workspace key.

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.