Statements

Download Statement

Endpoint to retrieve the presigned url to download a Statement.

post/business/v2/statements/download

Request body

yearinteger required
month'JANUARY' | 'FEBRUARY' | 'MARCH' | 'APRIL' | 'MAY' | 'JUNE' | 'JULY' | 'AUGUST' | 'SEPTEMBER' | 'OCTOBER' | 'NOVEMBER' | 'DECEMBER' required
file_type'PDF' | 'XLSX' | 'CSV' required
currency'EUR' | 'GBP' | 'USD' required

The ISO 4217 code of the currency of the Statement to search for.

Example request

{
  "year": 2025,
  "currency": "EUR"
}

Response

The returned resource is a Statement presigned url.

presigned_urlstring uri

The presigned url where to download the Statement.

Example response

{
  "presigned_url": "https://my-demo-bucket.s3.amazonaws.com/example.txt?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIOSFODNN7EXAMPLE%2F20250416%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250416T083000Z&X-Amz-Expires=3600&X-Amz-SignedHeaders=host&X-Amz-Signature=abcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890"
}