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

# List Statements

> List account statements

Returns a paginated list of daily holding statements for the organization.

**Permission:** `organizations:read`

## Query parameters

<ParamField query="page" type="number" default="1">
  1-indexed page number.
</ParamField>

<ParamField query="limit" type="number" default="25">
  Number of results per page (max 100).
</ParamField>

<ParamField query="fboAccountId" type="string">
  Filter by FBO account ID
</ParamField>

## Response

```json theme={null}
{
  "data": [
    {
      "id": "stmt_abc123",
      "organizationId": "org_abc123",
      "fboAccountId": "fbo_abc123",
      "statementType": "daily",
      "statementDate": "2025-05-31",
      "totalItemCount": 42,
      "totalInsuredValueCents": "215000000",
      "totalMarketValueCents": "218400000",
      "itemsReceived": 3,
      "itemsShippedOut": 1,
      "itemsTransferred": 0,
      "itemsReturned": 0,
      "itemsVoided": 0,
      "emailDeliveryStatus": "sent",
      "createdAt": "2025-06-01T00:05:00Z"
    }
  ],
  "pagination": {
    "page": 1,
    "hasMore": false
  }
}
```
