Skip to main content

List Banks

Retrieve a list of banks for the authenticated business.
curl -X GET "https://api.useadam.io/v1/adam/banks" \
  -H "X-API-Key: your_secret_key"

Get Bank

Retrieve a specific bank by UUID.
uuid
string
required
Bank UUID
curl -X GET "https://api.useadam.io/v1/adam/banks/bank-uuid" \
  -H "X-API-Key: your_secret_key"

Response

{
  "status": "success",
  "message": "Bank retrieved successfully",
  "data": {
    "uuid": "bank-uuid",
    "name": "Chase Bank",
    "nuban": "1234567890",
    "account_name": "Business Account",
    "currency": "USD",
    "country": "US",
    "balance": 10000.00,
    "opening_balance": 5000.00
  }
}