Retrieve every expediente stored in Monitor API. The response is a summary array ordered byDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/sheeplettuce/Monitor/llms.txt
Use this file to discover all available pages before exploring further.
fecha_ingreso descending — it omits heavy nested relations to keep list payloads small. All authenticated roles (Administrador, Operador, Técnico) can call this endpoint.
Endpoint
Técnico-role users have read-only access. They may call this endpoint but cannot create, update, or delete records.
Request
No path parameters, query parameters, or request body.Response — 200 OK
Returns a JSON array of summary expediente objects. Each element contains the fields below.Primary key. The unique claim (siniestro) number assigned to this expediente (e.g.
"SIN-2024-001").Invoice number associated with the repair order.
Internal work-order number.
Name of the service advisor handling this claim.
Date the vehicle was received. Stored as a
Date (no time component). Example: "2024-03-15T12:00:00.000Z".Current workflow status. One of:
| Value | Meaning |
|---|---|
Ingreso | Vehicle has just been received |
Restauracion | Active repair / restoration |
Pendiente_de_salida | Repair complete, awaiting release |
Salida | Vehicle has been returned to owner |
Vehicle make (e.g.
"Toyota").Vehicle model (e.g.
"Corolla").Vehicle body type or trim level (e.g.
"Sedán", "SUV").Vehicle color (e.g.
"Blanco").License plate number.
Full name of the vehicle owner / policyholder.
Client contact phone number.
Condensed insurer record.
null when no insurer is linked.Example response body
Error responses
| Status | Body | Cause |
|---|---|---|
401 | { "error": "Token requerido" } | Missing or malformed Authorization header |
401 | { "error": "Token inválido o expirado" } | JWT verification failed |
500 | { "error": "Error al obtener la lista de expedientes" } | Database or internal error |
Related endpoint — List Insurers
This route is registered before
/:no_siniestro in the router so Express never interprets the literal string aseguradoras as a siniestro number.Response — 200 OK
Returns a JSON array ordered alphabetically bynombre.
Auto-incremented primary key of the insurer.
Display name of the insurance company.
| Status | Body | Cause |
|---|---|---|
401 | { "error": "Token requerido" } | Missing or malformed Authorization header |
500 | { "error": "Error al obtener la lista de aseguradoras" } | Database or internal error |