List call recordings of a call
This endpoint lists all active call recordings of an active call. If you want to list recordings from a completed call, you should use the Recordings API.
Get a list of recordings from a channel call
Authorizations
HTTPRequired
Uses the Authorization header: 'AccessKey ' followed by your access key token (e.g., 'Authorization: AccessKey AbCdEfGhIjKlMnOpQrStUvWxYzAbCdEfGhIj')
Path parameters
workspaceIdstring · uuidRequired
The ID of the workspace
callIdstring · uuidRequired
The ID for a call
channelIdstring · uuidRequired
The ID for a channel
Query parameters
limitinteger · min: 1 · max: 1000OptionalDefault:
Limits the number of results to return
10pageTokenstring · max: 8000Optional
Pagination token that keeps of track of the current position in the list
Responses
200
OK
application/json
Responseall of
404
The request did not pass validation
application/json
422
The request did not pass validation
application/json
get
/workspaces/{workspaceId}/channels/{channelId}/calls/{callId}/recordingsGET /workspaces/{workspaceId}/channels/{channelId}/calls/{callId}/recordings HTTP/1.1
Host: api.bird.com
Authorization: AccessKey YOUR_SECRET_TOKEN
Accept: */*
{
"results": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"callId": "123e4567-e89b-12d3-a456-426614174000",
"channelId": "123e4567-e89b-12d3-a456-426614174000",
"status": "accepted",
"origin": "call-command-record",
"duration": 1,
"stereo": true,
"endCause": "text",
"createdAt": "2025-11-17T17:15:08.784Z",
"updatedAt": "2025-11-17T17:15:08.784Z",
"startedAt": "2025-11-17T17:15:08.784Z",
"endedAt": "2025-11-17T17:15:08.784Z"
}
],
"nextPageToken": "text"
}Example 1: Get the list of call recordings
You might consider filtering the recording list based on a limit for example.
curl "https://api.bird.com/workspaces/{workspaceId}/channels/{channelId}/calls/{callId}/recordings" \
-H "Authorization: AccessKey YOUR_SECRET_TOKEN"// N/A{
"results": [
{
"id": "32b98cd8-db4b-4a47-816e-ff7ff72b1da6",
"channelId": "880d8171-cbab-47bb-81b6-b1a0902da136",
"callId": "0b4cbfa2-813f-4b93-8007-265875bb88bb",
"status": "available",
"origin": "create-call",
"duration": 0,
"stereo": false,
"createdAt": "2023-10-26T18:28:55.646Z",
"updatedAt": "2023-10-26T18:28:55.646Z",
"startedAt": "2023-10-26T18:28:55.373Z",
"endedAt": "0001-01-01T00:00:00Z"
}
]
}Last updated
Was this helpful?

