cURL
curl --request GET \ --url https://api.fonder.com/accounts \ --header 'Authorization: Bearer <token>'
{ "total": 123, "page": 123, "limit": 123, "totalPages": 123, "hasNext": true, "hasPrevious": true, "data": [ { "id": "<string>", "name": "<string>", "accountNumber": "<string>", "description": "<string>", "type": "CASH", "bank": { "name": "<string>", "country": 123, "code": "<string>", "swiftCode": "<string>" }, "bankCode": "<string>", "liquidityThreshold": "<string>", "lastBalance": "<string>" } ] }
Returns a paginated list of all accounts
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Page number
Number of items per page
Account type filter
CASH
BANK
Bank code filter
Successful response
Show child attributes