Skip to main content
GET
/
v1
/
call-recordings
/
{callId}
Get recordings for a call
curl --request GET \
  --url https://api.openphone.com/v1/call-recordings/{callId} \
  --header 'Authorization: <api-key>'
{
  "data": [
    {
      "duration": 60,
      "id": "<string>",
      "startTime": "2022-01-01T00:00:00Z",
      "status": "completed",
      "type": "audio/mpeg",
      "url": "https://examplestorage.com/a643d4d3e1484fcc8b721627284eda5e.mp3"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://www.quo.com/docs/llms.txt

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

Authorizations

Authorization
string
header
required

Path Parameters

callId
string
required

The unique identifier of the call for which recordings are being retrieved.

Pattern: ^AC(.*)$
Example:

"AC3700e624eca547eb9f749a06f"

Response

Success

data
object[]
required