Retrieve a statement for the specified balance account.
The response format depends on the URL path:
statement.json- JSON formatstatement.csv- CSV formatstatement.pdf- PDF format (includes Wise branding)statement.xlsx- Excel formatstatement.xml- CAMT.053 XML formatstatement.mt940- MT940 formatstatement.qif- QIF format
The period between intervalStart and intervalEnd cannot exceed 469 days (around 1 year 3 months).
This endpoint is SCA protected when it applies. If your profile is registered within the UK and/or EEA, SCA most likely applies to you. The additional authentication is only required once every 90 days, viewing the statement on the website or in the mobile app counts towards that as well.
Optional UUID for correlating requests across systems. If provided, Wise echoes it back in the response. Maximum 36 characters. Learn more.
- Production Environmenthttps://api.wise.com/v1/profiles/{profileId}/balance-statements/{balanceId}/statement.json
- Sandbox Environmenthttps://api.wise-sandbox.com/v1/profiles/{profileId}/balance-statements/{balanceId}/statement.json
- UserToken
- PersonalToken
curl -i -X GET \
'https://api.wise.com/v1/profiles/12345/balance-statements/64/statement.json?currency=EUR&intervalStart=2025-03-01T00%3A00%3A00.000Z&intervalEnd=2025-04-30T23%3A59%3A59.999Z&type=COMPACT&statementLocale=en' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'X-External-Correlation-Id: f47ac10b-58cc-4372-a567-0e02b2c3d479'OK - Successfully retrieved balance statement.
Echoed back when X-External-Correlation-Id was included in the request. Learn more.
{ "accountHolder": { "type": "PERSONAL", "address": { "addressFirstLine": "Veerenni 24", "city": "Tallinn", "postCode": "12112", "stateCode": "", "countryName": "Estonia" }, "firstName": "Oliver", "lastName": "Wilson" }, "issuer": { "name": "TransferWise Ltd.", "firstLine": "56 Shoreditch High Street", "city": "London", "postCode": "E1 6JJ", "stateCode": "", "country": "United Kingdom" }, "bankDetails": {}, "transactions": [ { "type": "DEBIT", "date": "2018-04-30T08:47:05.832Z", "amount": { … }, "totalFees": { … }, "details": { … }, "exchangeDetails": { … }, "runningBalance": { … }, "referenceNumber": "CARD-249281" } ], "endOfStatementBalance": { "value": 9.94, "currency": "EUR" }, "query": { "intervalStart": "2018-03-01T00:00:00Z", "intervalEnd": "2018-04-30T23:59:59.999Z", "currency": "EUR", "accountId": 64 } }