Skip to main content
GET
/
api
/
v1
/
calling
/
call-sessions-detail
/
{id}
Get Call Session Detail
curl --request GET \
  --url https://api.ravan.ai/api/v1/calling/call-sessions-detail/{id} \
  --header 'X-Api-Key: <api-key>'
{
  "success": true,
  "message": "<string>",
  "data": {
    "id": "<string>",
    "agent_id": "<string>",
    "agent_name": "<string>",
    "organization_id": "<string>",
    "room_id": "<string>",
    "caller_number": "<string>",
    "callee_number": "<string>",
    "channel": "<string>",
    "status": "<string>",
    "summary": "<string>",
    "metadata": {},
    "disconnect_reason": "<string>",
    "call_latency_ms": 123,
    "duration_sec": 123,
    "recording_url": "<string>",
    "cost_total": 123,
    "started_at": "<string>",
    "ended_at": "<string>",
    "transcripts": [
      {
        "id": "<string>",
        "message": {
          "role": "<string>",
          "content": "<string>"
        },
        "timestamp_ms": 123
      }
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.ravan.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-Api-Key
string
required
Your Agni API key. Find it in your RavanAi.

Path Parameters

id
string
required
Call session ID

Response

success
boolean
Whether the request succeeded.
message
string
Human-readable status message.
data
object
Full call session with embedded transcripts.

Authorizations

X-Api-Key
string
header
required

Path Parameters

id
string
required

Call session ID

Response

200 - application/json

Successful response

success
boolean
message
string
data
object