https://api.veriko.mx/v1/finance/monthly Monthly validations report (CSV / XLSX / PDF / preview)
How-to guide →SAT-friendly 15-column listing of the month's verifications: Fecha, Folio (platform), Tipo, Clave de rastreo, Fecha operación, Monto, sender bank and CLABE, receiver bank and CLABE, Beneficiario, Banxico verdict, CEP availability, Folio CEP, Tiempo (ms).
format=csv(default,text/csv; charset=utf-8): flat CSV with UTF-8 BOM and brand[HEADER].format=xlsx(application/vnd.openxmlformats-officedocument.spreadsheetml.sheet): workbook with frozen header, autofilter, cell formatting.format=pdf(application/pdf): ledger-style PDF, capped at 1000 rows (LedgerPdfRenderer::ROW_CAP). Usecsvorxlsxfor larger volumes.format=preview(application/json): first 20 rows as aFinancePreviewResponseJSON envelope for UI preview.
Admins with finance:generate_all may target another user via ?user_id=<uuid>.
| Parameter | In | Type | Required | Description |
|---|---|---|---|---|
format | query | string | optional | Output format. Default: |
month * | query | string | required | Month to report in `YYYY-MM` format. |
user_id | query | string (uuid) | optional | Admins with `finance:generate_all` only. UUID of the user to query. |
curl -X GET 'https://api.veriko.mx/v1/finance/monthly' \
-H 'Authorization: Bearer mxcep_••••'
Python example — coming soon.
JavaScript example — coming soon.
PHP example — coming soon.
| Field | Type | Description |
|---|---|---|
type | string | JSON:API resource type (always `finance_preview`). |
attributes | object | Report preview fields. |
report | string | Report type: `monthly` — monthly statement; `counterparties` — top counterparties; `by-bank` — bank breakdown; `accounting` — accounting ledger. |
month | string | Report month in YYYY-MM format. |
headers | array | CSV column names, in the same order as the values in `rows`. |
rows | array (items: ?–20) | First 20 data rows of the report (maximum). |
| Status | Class | Description | Body |
|---|---|---|---|
| 200 | 2xx | CSV/XLSX/PDF stream, or JSON envelope in preview mode. | FinancePreviewResponse |
| 400 | 4xx | Invalid or missing `month` parameter | ErrorResponse |
| 401 | 4xx | Authentication is required or the provided credentials are invalid. | ErrorResponse |
| 403 | 4xx | Permisos insuficientes | ErrorResponse |
| 500 | 5xx | `pdf_render_failed` — PDF renderer crashed (OOM/font). Try CSV or XLSX. | ErrorResponse |
| Header | Type | Description |
|---|---|---|
Cache-Control | string | Disables intermediary caching of the download (does not apply to preview mode). |
Content-Disposition | string | Suggested filename (does not apply in preview mode). |
| Status | Code | Detail |
|---|---|---|
| 400 | invalid_month | 'month' is required and must be YYYY-MM. Envelope
|
| 401 | unauthorized | Invalid or missing authentication credentials. Envelope
|
| 403 | forbidden | You do not have permission to access this resource. Envelope
|