Skip to main content

Welcome to Tiro API

The Tiro API allows you to integrate AI-powered note-taking functionality into your applications. This quickstart guide will help you make your first API call.

Get Your API Key

Before making API calls, you need an API key from the Tiro Platform.
1

Visit Platform

Go to platform.tiro.ooo and sign in with your Tiro account.
2

Create API Key

Navigate to API Keys and create a new key.
3

Store Securely

Copy your API key and store it as an environment variable.
Store your API key securely and use environment variables instead of hardcoding it.

Quick Example

Here’s how to retrieve your notes:
curl -H "Authorization: Bearer $TIRO_API_KEY" \
     -H "Content-Type: application/json" \
     https://api.tiro.ooo/v1/external/notes
This will return a list of your notes with metadata. Each note object contains information like title, creation date, and processing status.

Next Steps

Now that you’ve made your first API call, explore these resources:

Tiro Platform

Manage API keys and configure webhook endpoints.

Authentication Guide

Complete guide to API key management and security best practices.

Voice File Processing

Complete guide for processing audio files with transcription and translation.

API Reference

Detailed documentation for all API endpoints and schemas.

Webhooks

Get real-time notifications when notes are processed.