Skip to main content
GET
/
v1
/
account-statements
Get account statements
curl --request GET \
  --url https://api.example.com/v1/account-statements
{
  "data": [
    {
      "createdAt": "2024-01-15T10:30:00.542163Z",
      "transactionId": "019bdb2a-960f-789d-8955-21720e6cdef0",
      "amount": 1000,
      "currency": "EUR",
      "direction": "DEBIT",
      "details": "Payment for invoice #12345",
      "paymentId": "019bdb2a-960f-789d-8955-21720e6cdeed",
      "creditor": {
        "name": "<string>",
        "iban": "<string>",
        "agent": "<string>"
      },
      "debtor": {
        "name": "<string>",
        "iban": "<string>",
        "agent": "<string>"
      }
    }
  ],
  "page": 0,
  "size": 100,
  "totalPages": 5
}

Query Parameters

accountId
string<uuid> | null

Account ID Account ID to retrieve statement for

Pattern: [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}
iban
string | null

Account IBAN Account IBAN to retrieve statement for

page
integer<int32>

Page number (0-based)

Required range: x >= 0
Example:

0

size
integer<int32>

Number of items per page (max 100)

Required range: 1 <= x <= 100
Example:

20

sortBy
string

Field name to sort by

Example:

"createdAt"

sortDirection
object

Sort direction

Response

200 - application/json

OK

Paginated response wrapper

data
object[]

List of items for the current page

page
integer<int32>

Current page number (0-based)

Example:

0

size
integer<int32>

Number of items per page

Example:

100

totalPages
integer<int32>

Total number of pages

Example:

5

Last modified on April 9, 2026