GET
/
calls
/
{callId}
curl --request GET \
  --url https://my.cald.ai/client/api/v1/calls/{callId} \
  --header 'Authorization: <api-key>'
{
  "callId": "<string>",
  "direction": "<string>",
  "from": "<string>",
  "to": "<string>",
  "completed": true,
  "result": "<string>",
  "createdAt": "<string>",
  "completedAt": "<string>",
  "transcripts": [
    {
      "role": "<string>",
      "content": "<string>"
    }
  ],
  "callLength": 123,
  "recordingUrl": "<string>"
}
This endpoint enables you to obtain call logs made using the Agents Call endpoint.

Authorizations

Authorization
string
header
required

Your API key, e.g. caldLiveDe39a3accb206dd615f30d118e519df0

Path Parameters

callId
string
required

The call ID of the call

Response

200 - application/json
Call transcript and details

The response is of type object.