> ## Documentation Index
> Fetch the complete documentation index at: https://docs.cleartextlabs.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Introduction

> Welcome to the Transcord API documentation

# 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

```bash theme={null}
curl -X GET "https://app.transcord.app/api/v1/recordings" \
  -H "Authorization: Bearer tr_live_your_api_key"
```

```json Response theme={null}
{
  "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) and Business ($99/mo) plans
* **API Key** - Generate one in [Settings](https://app.transcord.app/settings)

## Base URL

All API requests should be made to:

```
https://app.transcord.app/api/v1
```

## Need help?

Email us at [support@cleartextlabs.com](mailto:support@cleartextlabs.com)
