---
title: "List statements"
method: GET
path: "/v1/businesses/{client_id}/statements"
tags: ["Statements"]
---

# List statements

`GET /v1/businesses/{client_id}/statements`

This endpoint allows you to retrieve a list of balances for the required period for a given business.

## Path parameters

- `client_id` integer, required

## Query parameters

- `offset` integer
- `limit` integer
- `start_date` string, date, required
- `end_date` string, date, required

## Response `200`

OK

- StatementListResponse
  - `count` integer — The total number of daily balance records for the given period.
  - `next` string — The URL to the next page of daily balance records.
  - `previous` string — The URL to the previous page of daily balance records.
  - `start_date` string, date — The start date for this statement in UTC.
  - `end_date` string, date — The end date for this statement in UTC.
  - `currency` string — The currency of the statement.
  - `opening_balance` number — The opening balance of the statement.
  - `closing_balance` number — The closing balance of the statement.
  - `daily_balances` DailyBalance[]
    - `date` string, date — The date of the daily balance.
    - `opening_balance` number — The opening balance of this date.
    - `closing_balance` number — The closing balance of this date.
    - `id` string — The ID of the daily balance.
    - `created` string, date-time — The date and time when the balance was generated in UTC.
    - `updated` string, date-time — The date and time when the balance was last updated in UTC.

## Other responses

- `401` — Unauthorized
- `403` — Forbidden

---

[API](https://skmtc.net/letsweel/apis/weel-openapi.md) · [All operations](https://skmtc.net/letsweel/apis/weel-openapi/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/letsweel/weel-openapi/revisions/5a8ffd533c9c/schema)
