The flat statistical report endpoint returns a paginated, row-level list of appeal statistics produced by theDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/BladimirGS/judicial-backend/llms.txt
Use this file to discover all available pages before exploring further.
PA_SEL_PCF_EstadisticaApelaciones stored procedure. Each record in the response corresponds to a single appeal event enriched with reception month, entry month, and sala assignment data. This projection is useful for raw data analysis, audit exports, and feeding tabular reports where every individual record is required.
At least one filter parameter must be provided. Requests without any of
idSala, idNomenclatura, idApelacion, fechaInicio, or fechaFin will receive a 400 Bad Request response. Filter validation is enforced by EstadisticaFiltrosDTO.tieneFiltros().Endpoint
Authorization: Bearer <token>
Query parameters
Page number for pagination. Starts at
1.Number of statistical records per page.
Filter results to a specific sala (court division). Accepts the numeric ID of the sala.
Filter results to a specific nomenclatura classification. Accepts the numeric ID of the nomenclatura.
Filter results to a specific appeal type. Accepts the numeric ID of the appeal type.
Start of the date range filter applied to appeal reception timestamps. ISO 8601 format:
YYYY-MM-DD.End of the date range filter applied to appeal reception timestamps. ISO 8601 format:
YYYY-MM-DD.Response 200
"success"Human-readable result description, e.g.
"Reporte plano obtenido exitosamente".Paginated result envelope.
EstadisticaDto fields
Numeric ID of the appeal type associated with this record.
Name of the sala handling this appeal (e.g.
"Sala Penal 1").Internal processing code for the appeal.
Officialia folio identifier for this appeal record.
Nomenclature classification label.
Toca (appeal folio) number assigned to the case.
Name of the appeal type.
Appeal sub-type classification. May be
null if not categorized.Type of the written submission filed (e.g.
"Escrito de apelación").Full ISO 8601 timestamp of when the appeal was received by the court.
Full ISO 8601 timestamp of when the appeal was entered into the juzgado system. May be
null for legacy records.Name of the originating trial court.
Human-readable month name of the reception date (e.g.
"Enero", "Febrero").Four-digit year of the reception date (e.g.
2024).Human-readable month name of the juzgado entry date.
null if fechaHoraIngresoJuzgado is absent.Four-digit year of the juzgado entry date.
null if fechaHoraIngresoJuzgado is absent.Error responses
| Status | Meaning |
|---|---|
400 Bad Request | No valid filter parameters were provided (beyond pagination). |
401 Unauthorized | Missing or invalid Authorization bearer token. |