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

# List transfers

`GET /seller/transfers`

List balance transfer records for the authenticated seller.

Use this endpoint for ledger-style finance views and reconciliation flows.

Query behavior:
- Supports cursor pagination with `cursor` and `size`.
- `size` defaults to 20 when omitted.
- Cursor values should be taken from the previous page response to avoid gaps or duplicates.

Response:
- Returns transfer records from the connected payout provider for this seller account.
- Ideal for payout reconciliation and showing money movement history alongside payouts.

## Query parameters

- `cursor` string — Transfer ID to continue listing from
- `size` string — Number of transfers per page, defaults to 20

## Response `200`

Paginated transfers

- TransferList — Paginated transfers using a cursor for more results
  - `cursor` string — Cursor for the next page of results
  - `transfers` Transfer[], required — Transfers returned for this page
    - `id` string, required — Unique identifier for the transfer
    - `amount` number, required — Amount of the transfer in the smallest currency unit
    - `currency` string, required — Three-letter ISO currency code of the transfer
    - `created` string, required — Timestamp when the transfer was created
    - `reversed` boolean, required — True if the transfer has been fully reversed
    - `description` string, required — Description/Reason for the transfer
    - `orderId` string — An associated Order ID, if applicable
    - `orderItemId` string — An associated item from the order, if applicable

## Other responses

- `404` — Seller not found

---

[API](https://skmtc.net/managem/apis/managem-api.md) · [All operations](https://skmtc.net/managem/apis/managem-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/managem/managem-api/versions/6367b514f6ea/schema)
