Read an account validation

Reads the validation for a CLABE. Refreshed live from the bank while `pending`; final once `succeeded` or `failed`. Returns the holder name, RFC, institution and the match flags.

GET
/account-verifications/{account_number}

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

Path Parameters

account_number*string

The 18-digit CLABE that was validated.

Query Parameters

business_id?string

Your business id. Optional — the lookup is scoped by your API key.

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/account-verifications/646180000000000009"
{
  "account_number": "646180000000000009",
  "verification_id": "accv_3JkKAxCDvjeoUGgQPYzOMEFDl0K",
  "status": "succeeded",
  "holder_name": "Dede Kuhlman",
  "holder_id": "RBZZ190718TEA",
  "institution": "90646",
  "name_match": true,
  "rfc_match": true,
  "reason": null
}
{
  "code": 0,
  "message": "string"
}
{
  "code": 0,
  "message": "string"
}
Was this page helpful?