# Intuit Account Statements
> A single account statement, expressed in the FDX statement shape. The `self` entry in `links` points at the endpoint that returns the statement PDF; that endpoint responds with a 302 redirect to a short-lived, pre-signed download URL.

## List Intuit statements for an account
GET /fdx/intuit/accounts/{account_id}/statements
> List statements for an authorized account, ordered from most recent to oldest. Restrict the window with the optional `startTime` and `endTime` ISO 8601 date parameters, which filter on the statement's closing date. Each entry includes a `links.self.href` pointing at the endpoint that returns the statement PDF.
### Example
```curl
curl \
  --url "${INCREASE_URL}/fdx/intuit/accounts/account_in71c4amph0vgo2qllky/statements?offset=qwer123454q2f&limit=100" \
  -H "Authorization: Bearer ${INCREASE_API_KEY}"
```
### Path Parameters
- `account_id` (string, required)
  The identifier of the Account to retrieve.

### Query Parameters
- `startTime` (string, optional)
  Start time for use in retrieval of elements (ISO 8601).

- `endTime` (string, optional)
  End time for use in retrieval of elements (ISO 8601).

- `offset` (string, optional)
  Return the page of entries after this one.

- `limit` (integer, optional)
  Limit the size of the list that is returned. The default (and maximum) is 100 objects.

### Returns a Intuit Account Statements List object:
```json
{
  "page": {},
  "statements": [
    {
      "accountId": "account_in71c4amph0vgo2qllky",
      "description": "Statement for May 2024",
      "links": [
        {
          "href": "https://api.increase.com/fdx/intuit/account_statements/account_statement_lkc03a4skm2k7f38vj15",
          "rel": "self"
        }
      ],
      "statementDate": "2020-01-31",
      "statementId": "account_statement_lkc03a4skm2k7f38vj15",
      "status": "AVAILABLE"
    }
  ]
}
```