---
title: "List Transfers"
method: GET
path: "/transfers"
tags: ["Transfers"]
---

# List Transfers

`GET /transfers`

Lists ledger transfers for an account. You must specify an origin_id or a destination_id.

## Query parameters

- `origin_id` string
- `destination_id` string
- `order` 'created_at' | 'amount'
- `direction` 'asc' | 'desc'
- `created_before` string
- `created_after` string
- `first` integer
- `after` string
- `last` integer
- `before` string

## Response `200`

transfers listed

- object
  - `data` object[], required
    - `amount` number, required — Transfer amount.
    - `created_at` string, date-time, required — When the transfer was created.
    - `currency` string, required — Transfer currency.
    - `destination_ledger_account_id` string, required — Destination ledger account ID.
    - `fee_amount` number, nullable — Fee charged for the transfer.
    - `id` string, required — Transfer ID.
    - `metadata` object, nullable — Custom metadata attached to the transfer.
    - `notes` string, nullable — Transfer note.
    - `origin_ledger_account_id` string, required — Source ledger account ID.
  - `page_info` object, required
    - `end_cursor` string, nullable, required
    - `has_next_page` boolean, required
    - `has_previous_page` boolean, required
    - `start_cursor` string, nullable, required

## Other responses

- `400` — Invalid Parameters

---

[API](https://skmtc.dev/whop/apis/whop-api.md) · [All operations](https://skmtc.dev/whop/apis/whop-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/whop/whop-api/revisions/60bbb4a6ffbc/schema)
