Skip to main content
GET
/
consumers
/
{consumer_id}
/
banking
/
transactions
Get list of financial transactions
curl --request GET \
  --url https://api.chift.eu/consumers/{consumer_id}/banking/transactions \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "transaction-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",
      "internal_transaction": false,
      "operation_type": "incoming_transfer",
      "last_update_on": "2025-01-01T00:00:00Z",
      "status": "pending",
      "attachments_info": {
        "status": "unknown",
        "attachments": [
          {
            "filename": "<string>",
            "url": "<string>"
          }
        ]
      }
    }
  ],
  "total": 1,
  "page": 2,
  "size": 2
}

Authorizations

Authorization
string
header
required

This access token needs to be included in each of your request to the Chift API.

Path Parameters

consumer_id
string<uuid>
required

Query Parameters

page
integer
default:1

Page number

Required range: x >= 1
size
integer
default:50

Page size

Required range: 1 <= x <= 100
account_id
string
required
date_from
string<date> | null
date_to
string<date> | null
date_type
enum<string> | null
default:value_date
Available options:
value_date,
execution_date
updated_after
string<date> | null

Response

Successful Response

items
BankingTransactionItem · object[]
required
total
integer
required
Required range: x >= 0
page
integer
required
Required range: x >= 1
size
integer
required
Required range: x >= 1