v1
latestOpenAPI 3.1.02026-07-228956435.8 KBList account verifications
Lists the account verifications of your organization for the mode (live or test) of the API key used. Filter by account_number, transfer_id, or by date range with since and until. The list is paginated. Use the starting_after, ending_before, and limit query parameters to move through the list. The Link response header carries the URLs to navigate the paginated list.
Query parameters
Counterparty account number to filter by. Use the standardized Mexican bank account number (CLABE).
Identifier of the verification transfer to filter by. Returns the account verification linked to this transfer.
Lower bound for the creation date. Returns account verifications created on or after this ISO 8601 datetime in UTC.
Upper bound for the creation date. Returns account verifications created on or before this ISO 8601 datetime in UTC.
Cursor that fetches the next page of account verifications. Use the ID of the last account verification from the current page.
Cursor that fetches the previous page of account verifications. Use the ID of the first account verification from the current page.
Maximum number of account verifications to return per page. Ranges from 1 to 300. Defaults to 30.
Response
List of account verifications for the current mode.
Example response
[
{
"id": "accv_2daFu0zqqDtZGJaSi2TGI2Mm1nN",
"counterparty": {
"account_number": "132969000000000190",
"account_type": "clabe",
"holder_id": "000000000",
"holder_name": "Test Customer 1",
"institution": {
"id": "40012",
"name": "BBVA Mexico",
"country": "mx"
}
},
"mode": "test",
"status": "pending",
"transfer_id": "tr_2daFu0zqqDtZGJaSi2TGI2Mm1nN"
}
]