Skip to main content
GET
/
patients
/
{id}
Obtener paciente
curl --request GET \
  --url https://api.lina.health/v1/patients/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "pat_xyz789",
  "firstName": "María",
  "lastName": "García",
  "email": "maria.garcia@email.com",
  "phone": "+34612345678",
  "dateOfBirth": "1985-03-15",
  "status": "active",
  "tags": ["traumatología", "post-operatorio"],
  "metadata": { "insuranceId": "INS-12345" },
  "history": {
    "formsCompleted": 8,
    "callsMade": 3,
    "conversationsHeld": 5,
    "lastInteraction": "2026-05-13T16:45:00Z"
  },
  "createdAt": "2026-05-01T10:00:00Z",
  "updatedAt": "2026-05-14T08:30:00Z"
}

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.

Path Parameters

id
string
required
ID del paciente (ej. pat_xyz789).
{
  "id": "pat_xyz789",
  "firstName": "María",
  "lastName": "García",
  "email": "maria.garcia@email.com",
  "phone": "+34612345678",
  "dateOfBirth": "1985-03-15",
  "status": "active",
  "tags": ["traumatología", "post-operatorio"],
  "metadata": { "insuranceId": "INS-12345" },
  "history": {
    "formsCompleted": 8,
    "callsMade": 3,
    "conversationsHeld": 5,
    "lastInteraction": "2026-05-13T16:45:00Z"
  },
  "createdAt": "2026-05-01T10:00:00Z",
  "updatedAt": "2026-05-14T08:30:00Z"
}
id
string
Identificador único del paciente.
history
object
Resumen del historial de interacciones del paciente.
history.formsCompleted
integer
Número total de formularios completados.
history.callsMade
integer
Número total de llamadas IA realizadas.
history.conversationsHeld
integer
Número total de conversaciones de chat IA.
history.lastInteraction
string
Fecha de la última interacción con el paciente.