Skip to main content
GET
/
calls
Listar llamadas
curl --request GET \
  --url https://api.lina.health/v1/calls \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "call_abc123",
      "patientId": "pat_xyz789",
      "status": "completed",
      "purpose": "Seguimiento post-operatorio día 3",
      "language": "es",
      "duration": 187,
      "creditsConsumed": 55,
      "createdAt": "2026-05-14T10:30:00Z",
      "completedAt": "2026-05-14T10:33:07Z"
    },
    {
      "id": "call_def456",
      "patientId": "pat_abc123",
      "status": "failed",
      "purpose": "Recordatorio de medicación",
      "language": "es",
      "duration": 0,
      "creditsConsumed": 5,
      "failureReason": "no_answer",
      "createdAt": "2026-05-14T11:00:00Z"
    }
  ],
  "pagination": {
    "cursor": "eyJpZCI6ImNhbGxfZGVmNDU2In0=",
    "hasMore": true,
    "limit": 20
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.linahealthcareplatform.com/llms.txt

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

Query Parameters

patientId
string
Filtra por paciente.
status
string
Filtra por estado. Valores: queued, ringing, in-progress, completed, failed.
startDate
string
Fecha inicio en formato ISO 8601.
endDate
string
Fecha fin en formato ISO 8601.
limit
integer
default:"20"
Número de resultados por página (máximo 100).
cursor
string
Cursor de paginación.
{
  "data": [
    {
      "id": "call_abc123",
      "patientId": "pat_xyz789",
      "status": "completed",
      "purpose": "Seguimiento post-operatorio día 3",
      "language": "es",
      "duration": 187,
      "creditsConsumed": 55,
      "createdAt": "2026-05-14T10:30:00Z",
      "completedAt": "2026-05-14T10:33:07Z"
    },
    {
      "id": "call_def456",
      "patientId": "pat_abc123",
      "status": "failed",
      "purpose": "Recordatorio de medicación",
      "language": "es",
      "duration": 0,
      "creditsConsumed": 5,
      "failureReason": "no_answer",
      "createdAt": "2026-05-14T11:00:00Z"
    }
  ],
  "pagination": {
    "cursor": "eyJpZCI6ImNhbGxfZGVmNDU2In0=",
    "hasMore": true,
    "limit": 20
  }
}
data
array
Lista de llamadas. No incluye transcripción ni resumen — usa obtener estado para ver los detalles completos.