GET
/
v2
/
statements
curl --request GET \
  --url https://thirdparty.qonto.com/v2/statements \
  --header 'Authorization: Bearer <token>'
{
  "statements": [
    {
      "id": "08544790-6305-4a85-8487-e035290bcee8",
      "bank_account_id": "9f4af770-344b-42c1-a592-6a2adf82a6d3",
      "period": "08-2024",
      "file": {
        "file_name": "<string>",
        "file_content_type": "application/pdf",
        "file_size": "16966",
        "file_url": "<string>"
      }
    }
  ],
  "meta": {
    "current_page": 2,
    "next_page": "<any>",
    "prev_page": "<any>",
    "total_pages": 2,
    "total_count": 150,
    "per_page": 100
  }
}

Authorizations

Authorization
string
header
required

Bearer authorization header: Bearer <token>, where <token> is the access token received from the authorization server at the end of the OAuth 2.0 flow.

Headers

X-Qonto-Staging-Token
string

Required only for Sandbox API requests; to get one, please sign up to the Developer Portal.

Query Parameters

bank_account_ids[]
string[]

Statements can be filtered by their bank_account_id.<br>āš ļø ibans and bank_account_ids are mutually exclusive and cannot be used together.

Example:

"bank_account_ids[]=3591c988-8a98-4592-9665-0d9a55a5bf34&bank_account_ids[]=b71ec2ad-bd18-4a02-be4c-ba7b5e8d621f"

ibans[]
string[]

Statements can be filtered by their iban.<br>āš ļø ibans and bank_account_ids are mutually exclusive and cannot be used together.

Example:

"ibans[]=IT56O3609201600026403832768&ibans[]=IT31U3609201600955642496269"

period_from
string

Statements can be filtered by their period. This filter can be used in combination with the period_to query parameter to get statements for a specific timeframe. Please use a valid date format (ISO 8601 for instance).

Example:

"01-2023"

period_to
string

Statements can be filtered by their period. This filter can be used in combination with the period_from query parameter to get statements for a specific timeframe. Please use a valid date format (ISO 8601 for instance).

Example:

"12-2023"

page
integer
default:1

Returned page (cf. Pagination).

Example:

2

per_page
integer
default:100

Number of statements per page (cf. Pagination).

Required range: x <= 100
Example:

20

sort_by
string
default:period:desc

Statements can be sorted by their period in 2 possible directions: asc (Ascending) / desc (Descending).

Example:

"period:asc"

Response

200
application/json
Returns the list of statements.

The response is of type object.