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

# SWIFT Account Statements

> Supported account statement types for SWIFT accounts and how to download them.

Alongside payments, the platform provides account statements for your SWIFT accounts.

## Supported types

| Type       | What it is                   | What you get                                        |
| ---------- | ---------------------------- | --------------------------------------------------- |
| `camt.052` | Intraday account report      | Downloadable via API and dashboard UI               |
| `camt.053` | End-of-day account statement | Downloadable via API and dashboard UI               |
| `camt.054` | Debit / credit notification  | Downloadable via API and dashboard UI (XML or JSON) |

<Note>
  Statements are available per account (IBAN) and statement date, in **XML** or **JSON** format, regardless of what the correspondent originally sent.
</Note>

## API Reference

SWIFT statements are served by the **Nostro Account Statements API** - the same API used for all nostro accounts:

<CardGroup cols={3}>
  <Card title="List statement dates" icon="calendar" href="/payments/api/nostro/nostro-account-statements/get-nostro-account-statement-dates">
    `GET /v1/nostro-accounts/statements/dates`

    Available statement dates per account
  </Card>

  <Card title="Download statement" icon="file-arrow-down" href="/payments/api/nostro/nostro-account-statements/get-nostro-account-statement-page">
    `GET /v1/nostro-accounts/{iban}/statements/{type}/{date}`

    A statement by account, type and date
  </Card>

  <Card title="Download as zip" icon="file-zipper" href="/payments/api/nostro/nostro-account-statements/get-batched-payment-details-zip">
    `GET /v1/nostro-accounts/{iban}/statements/{type}/{date}:zip`

    Batched statement details in a single archive
  </Card>
</CardGroup>
