Accountsv1
List accounts (deprecated fiat list)
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.
Query Parameters
search?string
General text search
sort?string
Sort fields, comma-separated, '-' prefix for descending
limit?integer
offset?integer
Response Body
application/json
curl -X GET "https://example.com/v1/accounts"{
"data": [
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"currency": "string",
"balance": 0,
"iban": "string",
"check_digits": "string",
"bban": "string",
"bank": "string",
"bic": "string",
"description": "string",
"status": "active",
"country_id": "b42f7153-60f9-4aff-a5b5-21576be4161e",
"country": {},
"ledger_id": "baa10cc3-8899-4531-a9c5-63cd06cd8d2c",
"ledger": {},
"customer_id": "160c0c4b-9966-4dc1-a916-8407eb10d74e",
"customer": {},
"created_at": "2019-08-24T14:15:22Z",
"modified_at": "2019-08-24T14:15:22Z"
}
],
"total": 0,
"total_unfiltered": 0,
"has_more": true,
"metadata": {},
"keys": [
"string"
]
}Handler: GenerateAccountStatement. Validates the request and accepts statement generation as a durable background job, returning 202 Accepted. Identical requests in flight are deduplicated. Completion is delivered via account_statement_ready / account_statement_failed events. The body is an acknowledgement only.
Handler: GetAccountByID. Returns AccountResponse (active accounts only).