Skip to main content
GET
/
recordings
/
{id}
curl https://api.bota.dev/v1/recordings/rec_abc123 \
  -H "Authorization: Bearer sk_live_..."
{
  "id": "rec_abc123",
  "device_id": "dev_abc123",
  "end_user_id": "eu_xyz789",
  "status": "completed",
  "duration_ms": 1800000,
  "file_size_bytes": 2048576,
  "mime_type": "audio/wav",
  "started_at": "2025-01-15T09:00:00Z",
  "ended_at": "2025-01-15T09:30:00Z",
  "transcription_id": "txn_abc123",
  "metadata": {
    "meeting_type": "interview",
    "location": "office"
  },
  "created_at": "2025-01-15T10:00:00Z",
  "uploaded_at": "2025-01-15T10:05:00Z"
}
id
string
required
The recording’s unique identifier (e.g., rec_abc123).
curl https://api.bota.dev/v1/recordings/rec_abc123 \
  -H "Authorization: Bearer sk_live_..."
{
  "id": "rec_abc123",
  "device_id": "dev_abc123",
  "end_user_id": "eu_xyz789",
  "status": "completed",
  "duration_ms": 1800000,
  "file_size_bytes": 2048576,
  "mime_type": "audio/wav",
  "started_at": "2025-01-15T09:00:00Z",
  "ended_at": "2025-01-15T09:30:00Z",
  "transcription_id": "txn_abc123",
  "metadata": {
    "meeting_type": "interview",
    "location": "office"
  },
  "created_at": "2025-01-15T10:00:00Z",
  "uploaded_at": "2025-01-15T10:05:00Z"
}