GET
/
consumers
/
{consumer_id}
/
banking
/
{account_id}
/
transactions
curl --request GET \
  --url https://api.chift.eu/consumers/{consumer_id}/banking/{account_id}/transactions \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "transaction-123",
      "amount": 1000,
      "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"
    }
  ],
  "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
required
account_id
string
required

Query Parameters

page
integer
default:1
Required range: x >= 1
size
integer
default:50
Required range: 1 <= x <= 100
date_from
string
date_to
string
date_type
enum<string>
default:value_date

An enumeration.

Available options:
value_date,
execution_date

Response

200
application/json
Successful Response
items
object[]
required
total
integer
required
Required range: x >= 0
page
integer
required
Required range: x >= 1
size
integer
required
Required range: x >= 1