Pave Bank
Statement

Generate CSV

Viewer Access

Generates a downloadable CSV file of a bank statement. Can be filtered by account IDs, start date and end date.

Date range and timezone

Statement days run on GMT+4 (Georgian time). In UTC, a statement day YYYY-MM-DD covers 20:00:00Z on the previous calendar day through 19:59:59Z on the day itself.

Capturing a full statement day

start_date and end_date are applied as exact timestamps, so querying a UTC calendar day (00:00:00Z to 23:59:59Z) misses the first 4 hours of the statement day and includes the first 4 hours of the next one. To capture the full statement day 2026-01-02, query from 2026-01-01T20:00:00Z to 2026-01-02T19:59:59Z.

GET
/v1/statement/csv

Authorization

AuthorizationRequiredBearer <token>

Enter your token in the format: Bearer {token}

In: header

Query Parameters

account_idsRequiredarray<string>
start_datestring
end_datestring

Response Body

Success response

file_nameRequiredstring
urlRequiredstring
curl -X GET "https://developer-api-staging.pavebank.dev/v1/statement/csv?account_ids=string&start_date=string&end_date=string" \
  -H "Authorization: Bearer <token>"
{
  "file_name": "string",
  "url": "string"
}