---
title: "Retrieve Deposits"
method: GET
path: "/reconciliation/v1/deposits/"
tags: ["Reconciliation"]
---

# Retrieve Deposits

`GET /reconciliation/v1/deposits/`

Retrieve deposits from your connected bank accounts

## Query parameters

- `page` integer
- `size` integer
- `start_date` string, date
- `end_date` string, date
- `local_timezone` string
- `reconciliation_status` 'RECONCILED' | 'NOT_RECONCILED'

## Response `200`

- object
  - `data` object[], required
    - `id` string — The unique identifier for the deposit (internal to Lean).
    - `description` string — The description for the deposit as provided by the bank.
    - `amount` string — The amount of the deposit
    - `currency_code` string — The currency of the account where the deposit was received in
    - `timestamp` string — The UTC datetime the deposit was completed. Note that in the case the bank only provides the date with no time, we assume the transaction ocurred at 00:00 in the local timezone and then convert to UTC.
    - `bank_deposit_reference` string — Identifier provided by the bank
    - `beneficiary_account` string — Account where the money is received. This will be your bank account.
    - `reconciliation` object
      - `payment_id` string, nullable, required — Identifier for the payment that this deposit has been reconciled against. Will be null if status is `NOT_RECONCILED`
      - `status` 'RECONCILED' | 'NOT_RECONCILED', required — Determines if the deposit has been reconciled against a payment
    - `local_timezone` string, date-time — Localized timestamp
  - `page` object, required
    - `size` string, required — Page size
    - `total_pages` string, required — Total number of available pages
    - `total_elements` string, required — Total number of elements in across all pages
    - `number` string, required — Current page

---

[API](https://skmtc.net/leantech/apis/auth.md) · [All operations](https://skmtc.net/leantech/apis/auth/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/leantech/auth/revisions/c2e46d54d886/schema)
