cURL
curl --request GET \ --url https://api.nuvion.tech/accounts \ --header 'Authorization: <authorization>'
{ "message": "Accounts retrieved successfully", "status": 200, "data": [ { "id": "01HJ5G6R7MXW5ZK2QD6YA8N9F3", "entity_id": "01HJ5G6R7MXW5ZK2QD6YA8N9F4", "balance_id": "01HJ5G6R7MXW5ZK2QD6YA8N9F5", "type": "checking", "currency": "USD", "display_name": "Business Account", "meta": {}, "config": { "is_overdraftable": false, "overdraft_limit": 0 }, "created": 1693584000000, "updated": 1693584000000, "status": "active", "balance": { "overdraft_used": 0, "current": 1000.5, "available": 950.25 } }, { "id": "01HJ5G6R7MXW5ZK2QD6YA8N9F6", "entity_id": "01HJ5G6R7MXW5ZK2QD6YA8N9F4", "balance_id": "01HJ5G6R7MXW5ZK2QD6YA8N9F7", "type": "debit", "currency": "USD", "display_name": "Savings Account", "meta": {}, "config": { "is_overdraftable": false, "overdraft_limit": 0 }, "created": 1693584000000, "updated": 1693584000000, "status": "active", "balance": { "overdraft_used": 0, "current": 5000.75, "available": 5000.75 } } ] }
Lists all accounts for the authenticated entity.
Authorization header: Bearer {jwt or Secretkey}
"Bearer {jwt or Secretkey}"
Maximum number of accounts to return
Successful operation
A descriptive message indicating the result of the operation
The status of the API operation (successful, error, failed, pending)
List of accounts
Show child attributes