v1

latestOpenAPI 3.1.02026-07-22155403592.5 KB
Banking
Transactions

Get list of financial transactions

Returns the list of transactions of an account

get/consumers/{consumer_id}/banking/transactions

Path parameters

consumer_idstring uuid required

Query parameters

pageinteger

Page number

sizeinteger

Page size

account_idstring required
date_fromstring date nullable
date_tostring date nullable
date_type'value_date' | 'execution_date'
updated_afterstring date nullable

Response

Successful Response

totalinteger required
pageinteger required
sizeinteger required

Example response

{
  "items": [
    {
      "id": "transaction-123",
      "bank_account_id": "account-123",
      "amount": 1000,
      "tax_amount": 200,
      "currency": "EUR",
      "description": "Chift transaction",
      "additional_information": "Chift transaction",
      "counterpart_name": "John Doe",
      "counterpart_reference": "FR76300040123456789012345678",
      "remittance_information": "Chift transaction",
      "creation_date": "2025-01-01T00:00:00Z",
      "value_date": "2025-01-01T00:00:00Z",
      "execution_date": "2025-01-01T00:00:00Z",
      "last_update_on": "2025-01-01T00:00:00Z",
      "open_balance": 1000
    }
  ]
}