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.

Authentication

All API requests require authentication using a bearer token. You can obtain your API key by contacting our support team at [email protected] or through the Tiro dashboard once available.
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: