Skip to main content
POST
/
banks
/
resolve
Resolve bank account details
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"
}

Documentation Index

Fetch the complete documentation index at: https://docs.stablestack.xyz/llms.txt

Use this file to discover all available pages before exploring further.

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

Headers

x-api-key
string
required

Body

application/json
account_number
string
required

The bank account number to resolve

Example:

"1234567890"

bank_code
string
required

The bank code from the bank list

Example:

"000008"

Response

Bank account resolved successfully

status
string
Example:

"success"

data
object
message
string
Example:

"Bank account resolved successfully"