Skip to main content
GET
/
api
/
calls
/
{id}
/
transcript
Get a call transcript
curl --request GET \
  --url https://enterprise-api.avoca.ai/api/calls/{id}/transcript \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "call_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "transcript": [
      {
        "content": "<string>"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

API key in the format avoca_<64 hex characters>

Headers

x-team-id
integer

Target team ID. Required for multi-team (enterprise_all_teams / portfolio_all_teams) keys on v0 endpoints; single-team keys are locked to their team and omit it.

Path Parameters

id
string<uuid>
required

The call ID (UUID)

Response

The transcript as ordered role/content turns

data
object