Skip to main content
GET
/
forms
Listar formularios
curl --request GET \
  --url https://api.lina.health/v1/forms \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "form_abc123",
      "name": "Escala Visual Analógica (EVA)",
      "type": "assessment",
      "description": "Evaluación del nivel de dolor del paciente",
      "fieldsCount": 5,
      "createdAt": "2026-04-01T10:00:00Z",
      "updatedAt": "2026-04-15T12:00:00Z"
    },
    {
      "id": "form_def456",
      "name": "Cuestionario de seguimiento semanal",
      "type": "followup",
      "description": "Seguimiento post-operatorio estándar",
      "fieldsCount": 12,
      "createdAt": "2026-03-20T08:00:00Z",
      "updatedAt": "2026-05-01T09:00:00Z"
    }
  ],
  "pagination": {
    "cursor": "eyJpZCI6ImZvcm1fZGVmNDU2In0=",
    "hasMore": false,
    "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

limit
integer
default:"20"
Número de resultados por página (máximo 100).
cursor
string
Cursor de paginación.
type
string
Filtra por tipo de formulario. Valores: survey, assessment, intake, followup.
{
  "data": [
    {
      "id": "form_abc123",
      "name": "Escala Visual Analógica (EVA)",
      "type": "assessment",
      "description": "Evaluación del nivel de dolor del paciente",
      "fieldsCount": 5,
      "createdAt": "2026-04-01T10:00:00Z",
      "updatedAt": "2026-04-15T12:00:00Z"
    },
    {
      "id": "form_def456",
      "name": "Cuestionario de seguimiento semanal",
      "type": "followup",
      "description": "Seguimiento post-operatorio estándar",
      "fieldsCount": 12,
      "createdAt": "2026-03-20T08:00:00Z",
      "updatedAt": "2026-05-01T09:00:00Z"
    }
  ],
  "pagination": {
    "cursor": "eyJpZCI6ImZvcm1fZGVmNDU2In0=",
    "hasMore": false,
    "limit": 20
  }
}
data
array
Lista de formularios disponibles.
data[].fieldsCount
integer
Número de campos que contiene el formulario.