Skip to main content
GET
/
agents
/
{agent_id}
/
recordings
List Agent Recordings
curl --request GET \
  --url https://api.example.com/agents/{agent_id}/recordings \
  --header 'Authorization: Bearer <token>'
{
  "agent_id": "<string>",
  "total": 123,
  "recordings": [
    {
      "id": "<string>",
      "call_id": "<string>",
      "filename": "<string>",
      "format": "<string>",
      "status": "<string>",
      "created_at": "<string>",
      "session_id": "<string>",
      "file_size_bytes": 123,
      "duration_seconds": 123
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.mrassistant.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

agent_id
string<uuid>
required

Query Parameters

limit
integer
default:50

Number of recordings to return

Required range: 1 <= x <= 100
offset
integer
default:0

Number of recordings to skip

Required range: x >= 0
status_filter
string | null

Filter by status: recording, processing, completed, failed

Response

Successful Response

List of recordings.

agent_id
string
required
total
integer
required
recordings
RecordingListItem · object[]
required