Docs
Banks

Resolve a bank account

POST
/v1/banks/resolve

Confirms an account exists and returns the registered name. Call it before creating an offramp order so the customer can check the name first.

Authorization

ApiKeyAuth
X-API-Key<token>

Your API key. Identifies your business; you never send a business id.

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/v1/banks/resolve" \  -H "Content-Type: application/json" \  -d '{    "bank_code": "string",    "account_number": "string"  }'
{  "status": true,  "data": {    "account_number": "0123456789",    "account_name": "ADA OBI",    "bank_code": "058",    "bank_name": "GTBank"  }}