Skip to main content

1. Get your API key

1

Log in to Transcord

Go to app.transcord.app and sign in to your account.
2

Open Settings

Navigate to Settings from the menu.
3

Generate API Key

Scroll to “API Access” and click Generate API Key.
Copy your API key immediately - it won’t be shown again!

2. Make your first request

Test your API key by fetching your account info:
curl -X GET "https://app.transcord.app/api/v1/me" \
  -H "Authorization: Bearer tr_live_your_api_key"
You should see a response like:
{
  "user": {
    "id": "clx1234567890",
    "email": "[email protected]",
    "name": "Your Name"
  },
  "subscription": {
    "status": "active",
    "plan": "pro",
    "minutesUsed": 127,
    "minutesRemaining": 273
  }
}

3. List your recordings

curl -X GET "https://app.transcord.app/api/v1/recordings?limit=5" \
  -H "Authorization: Bearer tr_live_your_api_key"

4. Get a transcript

curl -X GET "https://app.transcord.app/api/v1/recordings/RECORDING_ID/transcript" \
  -H "Authorization: Bearer tr_live_your_api_key"

Next steps