Skip to main content
POST
/
api
/
external
/
bank
/
account-lookup
Resolve bank account
curl --request POST \
  --url https://api-prod.blaaiz.com/api/external/bank/account-lookup \
  --header 'Content-Type: application/json' \
  --header 'x-blaaiz-api-key: <api-key>' \
  --data '
{
  "account_number": "0123456789",
  "bank_id": "044"
}
'
{
  "message": "Account resolved successfully",
  "account_name": "John Doe"
}

Authorizations

x-blaaiz-api-key
string
header
required

Body

application/json

This endpoint allows you to verify the validity of a bank account by providing the account number and the associated bank ID. It returns information about the account, such as the account holder's name, to ensure accuracy before initiating transactions. We advise using this to confirm recipient details for payments, transfers, or any transaction involving a bank account. Example Use Cases:

  • Validate a recipient's bank account details during payment setup.
  • Ensure accurate data entry before processing a transaction.
  • Provide real-time verification for user onboarding or payout processes.
account_number
string
required

Bank account number to verify

bank_id
string
required

Bank ID (see List Banks endpoint)

Response

Account resolved successfully

account_name
string
required

Name of the account holder