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.

The Tiro API gives you programmatic access to notes, transcripts, summaries, and voice processing.

Base URL

All API requests should be made to:
https://api.tiro.ooo

Rate Limits

To ensure fair usage and system stability, the Tiro API implements the following rate limits:

Rate Limit Exceeded

When rate limits are exceeded, you receive a 429 Too Many Requests response:
{
  "error": {
    "code": 429001,
    "message": "Rate limit exceeded. Try again in 3600 seconds",
    "detail": "Hourly limit of 1000 requests exceeded"
  }
}

Response Format

All API responses follow a consistent JSON format:

Success Response (List)

{
  "content": [...],
  "nextCursor": "opaque-cursor-string"
}

Success Response (Single Resource)

{
  "id": "resource-id",
  "createdAt": "2024-01-01T00:00:00Z",
  ...
}

Error Response

Errors include detailed information for debugging:
{
  "error": {
    "code": 400000,
    "message": "Human readable error message",
    "detail": null
  }
}