Accountsv1
Get account
Handler: GetAccountByID. Returns AccountResponse (active accounts only).
curl -X GET "https://example.com/v1/accounts/497f6eca-6276-4993-bfeb-53cbbbba6f08"{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"active": true,
"customer_id": "160c0c4b-9966-4dc1-a916-8407eb10d74e",
"currency": "string",
"balance": {
"amount": "123456",
"currency": "EUR",
"precision": 2
},
"iban": "string",
"country_code": "string",
"country": "string",
"country_id": "b42f7153-60f9-4aff-a5b5-21576be4161e",
"check_digits": "string",
"bban": "string",
"bank": "string",
"bic": "string",
"description": "string",
"metadata": {},
"status": "active"
}Paginated list of fiat accounts. Handler: GetAllAccounts. Returns a get_all envelope (data/total/total_unfiltered/has_more), NOT a bare array. Each item is an AccountListItem where balance is an integer in minor units.
Handler: GetDetailsByIBAN. Returns IBAN details for active accounts only. Deactivated accounts are treated as not found.