Mexico CLABE Validation

Validate Mexican CLABE account identifiers and confirm banking institution details. This page follows the same clean UI as the main site while giving developers a focused validation guide.

A code can be checked before a payment is created, helping teams prevent failed transfers, manual repair work, delays, and support tickets.

For example, use 002010077777777771:

  • 002 - bank code
  • 010 - city code
  • 07777777777 - account number
  • 1 - check digit

How to validate

Start by creating an API key. Pass this key with the x-api-key HTTP header or with the api_key query parameter.

curl 'https://api.ibankdata.com/v1/clabe/002010077777777771' \
--header 'X-Api-Key: your-api-key-here' \
--header 'Accept: application/json'

The response should be:

{
"success": true,
"data": {
"id": "002010077777777771",
"bank": {
"name": "Example National Bank",
"code": "EXNB",
"country_id": "US"
},
"branch_name": "Main Office",
"city": { "name": "New York" },
"address": "100 Finance Avenue",
"postcode": "10001"
}
}

You can find full documentation here.