Skip to main content
GET
/
api
/
calls
/
get_call_transcript
/
{call_id}
Get Call Transcript
curl --request GET \
  --url https://voiceagent.infers.co/api/calls/get_call_transcript/{call_id} \
  --header 'Authorization: <api-key>'
{
  "transcript_object": [
    {
      "role": "agent",
      "content": "hi how are you doing?",
      "words": [
        {
          "word": "hi",
          "start": 0.7,
          "end": 1.3
        }
      ]
    }
  ]
}

Get Call Transcript

Use this endpoint to fetch the current transcript of a call.

Authorizations

Authorization
string
header
required

API key for authentication. Email vaibhav@infer.so to get your API key

Path Parameters

call_id
string
required

The unique ID of the call.

Query Parameters

with_tool_calls
boolean
default:true

Whether to include tool call invocations in the transcript.

Response

Successful Response

transcript_object
object[]
required