v1
latestOpenAPI 3.1.02026-07-228956435.8 KBList account statements
Lists the account statements of one of your accounts for the live or test mode of the API key you use. Filter by date range with the since and until query parameters. The response is paginated. Use starting_after, ending_before, and limit to page through the results. When more results are available, the Link response header carries the URL of the next page.
Path parameters
Unique identifier of the account whose statements you want to list.
Query parameters
Lower bound for the statement period. Returns statements whose end_date is on or after this ISO 8601 date.
Upper bound for the statement period. Returns statements whose start_date is on or before this ISO 8601 date.
Cursor that fetches the next page of account statements. Use the ID of the last account statement from the current page.
Cursor that fetches the previous page of account statements. Use the ID of the first account statement from the current page.
Maximum number of account statements to return per page. Ranges from 1 to 300. Defaults to 30.
Response
List of account statements for the account.
Example response
[
{
"id": "acst_2daFu0zqqDtZGJaSi2TGI2Mm1nN",
"created_at": "2026-03-01T12:00:00.000Z",
"download_url": "https://fintoc.com/account_statements/astmt.pdf",
"end_date": "2026-02-28",
"final_balance_cents": 1500000,
"initial_balance_cents": 1000000,
"start_date": "2026-02-01",
"total_credited_cents": 1000000,
"total_debited_cents": 500000
}
]