POST
/
banks
/
resolve
curl --request POST \
  --url https://api-staging.stablestack.xyz/api/banks/resolve \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <x-api-key>' \
  --data '{
  "account_number": "1234567890",
  "bank_code": "000008"
}'
{
"status": "success",
"data": {
"destination_institution_code": "000008",
"account_number": "1234567890",
"account_name": "Lihua Ma"
},
"message": "Bank account resolved successfully"
}

Validates and resolves bank account information. Returns account holder name and other relevant details.

Headers

x-api-key
string
required

Body

application/json

Response

200
application/json

Bank account resolved successfully

The response is of type object.