> ## Documentation Index
> Fetch the complete documentation index at: https://docs.fintoc.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Account statement object

> Account Statements are a monthly PDF document that summarizes all movements for a given account during a specific period.

## The Account Statement object

An `AccountStatement` represents a monthly PDF document that summarizes the `Movements` and balances of an `Account` over a given period. You receive an `AccountStatement` object when you list the statements available for an `Account`, and you download the document itself from its `download_url`.

```json theme={null}
{
  "id": "acst_3COTQ3yzsq7Y6irrhHlm2R8d5XQ",
  "object": "account_statement",
  "created_at": "2026-04-15T12:19:58.096Z",
  "download_url": "https://storage.googleapis.com/fin-sandbox-core-statements-prd/corg_3AOGg2wCBU78MtvheS1ecdjW3lm/AccountStatement/acst_3COTQ3yzsq7Y6iSsqHlm2R8d5XQ/account_statement/20260415121957660-statement-0350-03-2026.pdf?GoogleAccessId=sa-url-presigning-prd%40fin-prd-wch4ah7y4a.iam.gserviceaccount.com&Expires=1776269474&Signature=xxxxxx&response-content-disposition=attachment",
  "end_date": "2026-03-31",
  "final_balance_cents": 699675,
  "initial_balance_cents": 0,
  "start_date": "2026-03-01",
  "total_credited_cents": 1159675,
  "total_debited_cents": 460000
}
```

| Field                   | Type    | Description                                                                       |
| :---------------------- | :------ | :-------------------------------------------------------------------------------- |
| `id`                    | string  | Unique identifier for the statement                                               |
| `object`                | string  | Always `"account_statement"`                                                      |
| `created_at`            | string  | ISO 8601 timestamp of when the account statement was generated                    |
| `download_url`          | string  | Signed URL to download the statement as a PDF. Expires after a short time window. |
| `end_date`              | string  | End date of the statement period in ISO 8601 format                               |
| `final_balance_cents`   | integer | Account balance at the end of the period, in cents                                |
| `initial_balance_cents` | integer | Account balance at the start of the period, in cents                              |
| `start_date`            | string  | Start date of the statement period in ISO 8601 format                             |
| `total_credited_cents`  | integer | Total amount credited during the period, in cents                                 |
| `total_debited_cents`   | integer | Total amount debited during the period, in cents                                  |
