Skip to main content
GET
/
v1
/
calls
/
{callId}
Obtener llamada por id
curl --request GET \
  --url https://api-prod.studio.getsupervisor.ai/v1/calls/{callId} \
  --header 'Authorization: Bearer <token>' \
  --header 'x-workspace-id: <x-workspace-id>'
{
  "id": "d7e0d9b2-8d8d-4cbb-a4d5-9a52c6b59d2f",
  "title": "Llamada de soporte",
  "customerPhone": "+5215555555555",
  "durationSeconds": 312,
  "supervisors": {
    "evaluations": 1,
    "discoveries": 0,
    "risks": 0
  },
  "goal": {
    "achieved": true,
    "reason": null
  },
  "startedAt": "2025-10-03T10:15:11.004Z",
  "recordingUrl": "https://example.com/recordings/d7e0d9b2.mp3",
  "agentBatchId": null,
  "agentId": "5769e110-7267-4cf7-a3ca-2d06e8fffbb3",
  "executionId": "exec_01J9Z1F9H2"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

x-workspace-id
string<uuid>
required

Identificador del workspace multi-tenant.

Path Parameters

callId
string<uuid>
required

Identificador de la llamada.

Response

Detalle de la llamada

id
string<uuid>
required
title
string
required
customerPhone
string | null
required
durationSeconds
integer | null
required
Required range: x >= 0
supervisors
object
required
goal
object
required
startedAt
string<date-time>
required
recordingUrl
string<uri> | null
required
agentBatchId
string<uuid> | null
required
agentId
string<uuid> | null
required
executionId
string | null
required