Skip to main content
POST
/
partner
/
wallets
/
fiat
/
verify-account
Verify bank account
curl --request POST \
  --url https://api.stabyl.com/v1/partner/wallets/fiat/verify-account \
  --header 'Content-Type: application/json' \
  --header 'X-Api-Key: <api-key>' \
  --data '
{
  "account_number": "0123456789",
  "bank_code": "044"
}
'
{
  "data": {
    "account_name": "EXAMPLE RECIPIENT"
  },
  "status": "success"
}

Documentation Index

Fetch the complete documentation index at: https://stabyl.mintlify.app/llms.txt

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

Fiat deposit and account-verification routes prepare account records only. Reconcile credited deposits from wallet transactions.

Authorizations

X-Api-Key
string
header
default:sb_test_your_key
required

API key. Send it in the X-Api-Key header.

Body

application/json

Bank account details to verify before saving a fiat recipient.

Bank account details to verify before saving a fiat recipient.

account_number
string
required

Account number to verify

Example:

"0123456789"

bank_code
string
required

Bank code

Example:

"044"

Response

Account verification result

data
object
required

Verified bank account name returned for operator confirmation.

status
enum<string>
required
Available options:
success