GET
https://api.veriko.mx/v1/api/usage/exportExport API usage
How-to guide →Downloads a file with the API request audit log for the authenticated user. The format parameter selects between CSV (default) and XLSX. Supports date range filtering. CSV is streamed with a UTF-8 BOM.
| Parameter | In | Type | Required | Description |
|---|---|---|---|---|
format | query | string | optional | File format: Default: csv |
from | query | string (date) | optional | Start date (inclusive) of the range to export, in ISO 8601 format (YYYY-MM-DD). e.g.2026-05-01 |
limit | query | integer | optional | Maximum number of rows to export. Unlimited when omitted. e.g.500 |
to | query | string (date) | optional | End date (inclusive) of the range to export, in ISO 8601 format (YYYY-MM-DD). e.g.2026-05-17 |
curl -X GET 'https://api.veriko.mx/v1/api/usage/export' \
-H 'Authorization: Bearer veriko_••••'Python example — coming soon.
JavaScript example — coming soon.
PHP example — coming soon.
| Status | Class | Description | Body |
|---|---|---|---|
| 200 | 2xx | CSV file (with UTF-8 BOM) or XLSX based on format. | No body |
| 401 | 4xx | Authentication is required or the provided credentials are invalid. | ErrorResponse |
| Header | Type | Description |
|---|---|---|
Content-Disposition | string |
| Status | Code | Example |
|---|---|---|
| 401 | unauthorized | Invalid or missing authentication credentials. Envelope
|