This Month
of — calls
Remaining
API calls left
Plan

API Keys

Keys are shown in full only once. Store them securely.

✓ New API key created
tmk_...
⚠ Save this key now — it will not be shown again.
  • No API keys yet Create your first key to start using the API

Quick Start

Annotate text with a single API call

Single annotation

# Replace YOUR_API_KEY with your key curl -X POST https://tagmatic.app/api/annotate \ -H "X-API-Key: YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "text": "I love this product!", "schema": [{"name": "sentiment", "type": "classification", "values": ["positive","negative","neutral"]}] }'

Batch annotation

curl -X POST https://tagmatic.app/api/annotate/batch \ -H "X-API-Key: YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "texts": ["Text 1", "Text 2", "Text 3"], "schema": [{"name": "sentiment", "type": "classification", "values": ["positive","negative","neutral"]}] }'