Start an account validation

Confirms that a CLABE is real and who owns it — holder name and RFC, straight from the bank — before any real money moves. A 0.01 MXN test deposit, on Tonder, and a read of the official interbank receipt.

POST
/account-verifications/

Authorization

Authorization
Authorization<token>

Your public API key, with the word Token and a space in front of it. Example: Token 6534bc0a7e1f4d2b9c8e3a5f7b1d2c4e6f8a9b0c — that whole value is the header. Sending the key alone returns 401 'Authentication credentials were not provided'. In this playground you may paste just the key; the prefix is added for you.

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

curl -X POST "https://example.com/account-verifications/" \  -H "Content-Type: application/json" \  -d '{    "account_number": "646180000000000009",    "business_id": "97",    "mode": "withdrawal",    "expected_holder_name": "Dede Kuhlman",    "expected_holder_id": "RBZZ190718TEA"  }'
{
  "account_number": "646180000000000009",
  "verification_id": "accv_3JkKAxCDvjeoUGgQPYzOMEFDl0K",
  "status": "pending",
  "holder_name": null,
  "holder_id": null,
  "institution": "90646",
  "name_match": null,
  "rfc_match": null,
  "reason": null
}
{
  "account_number": [
    "This value does not match the required pattern."
  ]
}
{
  "code": 0,
  "message": "string"
}
Empty
Was this page helpful?