Skip to main content
GET
/
v1
/
call
/
{id}
/
transcript
Get a call transcript
curl --request GET \
  --url https://api.osvi.ai/v1/call/{id}/transcript \
  --header 'API-Token: <api-key>'
{
  "success": true,
  "data": {
    "call_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "transcript": [
      {
        "role": "assistant",
        "content": "Hello, am I speaking with Ravi?",
        "timestamp": "2026-06-12T09:30:05+05:30"
      }
    ]
  }
}

Authorizations

API-Token
string
header
required

16-character API token associated with your OSVI account. Find it in your dashboard under Settings → API.

Path Parameters

id
string<uuid>
required

The call's call_id (UUID).

Response

The transcript turns.

success
boolean
Example:

true

data
object