cURL
curl --request GET \ --url https://api.chift.eu/consumers/{consumer_id}/banking/accounts \ --header 'Authorization: Bearer <token>'
{ "items": [ { "id": "account-123", "currency": "EUR", "current_balance": 1000, "current_balance_last_update_date": "2025-01-01T00:00:00Z", "available_balance": 1000, "available_balance_last_update_date": "2025-01-01T00:00:00Z", "description": "Chift account", "reference": "FR76300040123456789012345678", "reference_type": "IBAN", "holder_name": "John Doe" } ], "total": 1, "page": 2, "size": 2 }
Returns the list of banking accounts
This access token needs to be included in each of your request to the Chift API.
Page number
x >= 1
Page size
1 <= x <= 100
Successful Response
The response is of type object.
object