Skip to main content
GET
/
v1
/
omni
/
calls
/
{call_id}
/
transcript
Get an Omni call transcript
curl --request GET \
  --url https://api.pyai.com/v1/omni/calls/{call_id}/transcript \
  --header 'Authorization: Bearer <token>'
{
  "object": "omni.call.transcript",
  "call_id": "<string>",
  "transcript": {}
}

Authorizations

Authorization
string
header
required

Use Authorization: Bearer pyai_live_... (or pyai_test_...).

Path Parameters

call_id
string
required

Response

Call transcript

object
string
Example:

"omni.call.transcript"

call_id
string
transcript

The transcript document. Shape is engine-defined: typically an object with a turns array, each turn carrying role (user or assistant), text, and optional start_ms/end_ms timestamps. May be a plain string for legacy sessions.