https://api.veriko.mx/v1/validations/{id}/retry-attemptsList retry attempts
How-to guide →Returns every automatic retry made on a validation, in order. Each entry carries the dispatch, start, and finish timestamps, the verdict before and after the attempt, how long it took, and the error code if there was one. It serves to understand why a validation ended up where it did: the policy governing those attempts is in the retry policy.
| Parameter | In | Type | Required | Description |
|---|---|---|---|---|
id* | path | string (uuid) | required | Validation UUID. |
curl -X GET 'https://api.veriko.mx/v1/validations/{id}/retry-attempts' \
-H 'Authorization: Bearer veriko_••••'Python example — coming soon.
JavaScript example — coming soon.
PHP example — coming soon.
| Field | Type | Description |
|---|---|---|
attempt_number | integer | Sequence number of the attempt (1-based). e.g.1 |
dispatched_at | string (date-time) | ISO 8601 timestamp in UTC with explicit 2026-05-01T05:14:38Z |
started_at | string (date-time) | ISO 8601 timestamp in UTC with explicit 2026-05-01T05:14:38Z |
finished_at | string (date-time) | ISO 8601 timestamp in UTC with explicit 2026-05-01T05:14:38Z |
prev_banxico_status | string | Banxico status of the validation immediately before this attempt (e.g. not_found |
new_banxico_status | string | nullnullable | Banxico status after the attempt completed. valid |
prev_status | string | Validation status before the attempt. The states are not_found |
new_status | string | nullnullable | Validation status after the attempt. valid |
processing_time_ms | integer | nullnullable | Processing time for the attempt in milliseconds. 1250 |
error_code | ValidationErrorCode | null | Error code if the attempt ended in failure. See network |
proxy_pool_member | string | nullnullable | Identifier of the proxy used for this attempt. Useful for diagnosing repeated failures on the same node. e.g.proxy-03 |
| Status | Class | Description | Body |
|---|---|---|---|
| 200 | 2xx | List of retry attempts in chronological order (ASC by attempt_number). | No body |
| 401 | 4xx | Authentication is required or the provided credentials are invalid. | ErrorResponse |
| 403 | 4xx | Insufficient permissions. | ErrorResponse |
| 404 | 4xx | Validation not found (not_found). | ErrorResponse |
| 422 | 4xx | Invalid UUID in path (invalid_uuid). | ErrorResponse |
| Status | Code | Example |
|---|---|---|
| 401 | unauthorized | Invalid or missing authentication credentials. Envelope
|
| 403 | forbidden | You do not have permission to access this resource. Envelope
|