Skip to main content

Transcord API

Transcord is a call recording and transcription service built for journalists and lawyers. Record phone calls, get AI-powered transcripts, and access everything programmatically through our API.

What you can do

  • List Recordings - Get all your call recordings with filtering and pagination
  • Get Transcripts - Download transcripts in JSON, plain text, or SRT format
  • Download Audio - Get signed URLs to download or stream audio files
  • MCP Integration - Connect Transcord to Claude AI for natural language search

Quick example

curl -X GET "https://app.transcord.app/api/v1/recordings" \
  -H "Authorization: Bearer tr_live_your_api_key"
Response
{
  "data": [
    {
      "id": "clx1234567890",
      "toNumber": "+14155551234",
      "fromNumber": "+14155555678",
      "duration": 342,
      "status": "completed",
      "direction": "outbound",
      "createdAt": "2026-01-15T10:30:00.000Z"
    }
  ],
  "pagination": {
    "page": 1,
    "limit": 20,
    "total": 47,
    "totalPages": 3,
    "hasMore": true
  }
}

Requirements

  • Pro or Business subscription - API access is available on Pro (49/mo)andBusiness(49/mo) and Business (99/mo) plans
  • API Key - Generate one in Settings

Base URL

All API requests should be made to:
https://app.transcord.app/api/v1

Need help?

Email us at [email protected]