Skip to main content
GET
/
v1
/
call
/
{id}
/
recording
Get a call recording URL
curl --request GET \
  --url https://api.osvi.ai/v1/call/{id}/recording \
  --header 'API-Token: <api-key>'
{
  "success": true,
  "data": {
    "call_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "recording_url": "https://s3.amazonaws.com/.../recording.mp4?X-Amz-...",
    "expires_in_seconds": 900
  }
}

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

A presigned recording URL.

success
boolean
Example:

true

data
object