---
title: "List Deposits"
method: GET
path: "/apply/deposit"
tags: ["Deposit"]
---

# List Deposits

`GET /apply/deposit`

## Query parameters

- `page_cursor` string
- `page_size` integer
- `from_date` string
- `to_date` string

## Response `200`

A dictionary with a `data` property that contains a list of up to `page_size` deposit elements, starting after the deposit described by `page_cursor`. If no more deposits are available, the resulting list will be empty.

- object
  - `data` object[]
    - `ach` object — ACH payment instructions
      - `account_type` string — One of `checking` or `savings`
      - `last4` string — Last 4 digits of the account number
      - `routing_number` string — ABA routing transit number associated with the account
    - `amount` string — Amount of money to transfer
    - `card` object — Debit card payment instructions
      - `last4` string — Last 4 digits of the card number
    - `card_token` object — Tokenized debit card payment instructions
      - `description` string — Description to use when posting the transaction to the virtual ledger
      - `first_name` string — First name of the card holder
      - `last_name` string — Last name of the card holder
      - `token` string — Token representing the card
    - `id` string — Unique identifier for object
    - `name_on_account` string — Name of the owner of the account providing the deposit
    - `userdata` object — Arbitrary data the user can attach to the object

---

[API](https://skmtc.net/treasuryprime/apis/account.md) · [All operations](https://skmtc.net/treasuryprime/apis/account/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/treasuryprime/account/versions/95a3c69c14e8/schema)
