---
title: "Retrieve Transfer"
method: GET
path: "/transfers/{id}"
tags: ["Transfers"]
---

# Retrieve Transfer

`GET /transfers/{id}`

Retrieves a single transfer.

## Response `200`

transfer retrieved

- object — A transfer of credit between two ledger accounts.
  - `amount` number, required — Transfer amount.
  - `created_at` string, date-time, required — When the transfer was created.
  - `created_by_user` object, nullable, required — The user who initiated the transfer, such as the team member who sent a manual payout. Null if the creator is unavailable.
    - `id` string, required — User ID.
    - `name` string, nullable — User display name.
    - `username` string, required — User's username.
  - `currency` string, required — Transfer currency.
  - `destination` union, required — Account or user receiving funds.
    - object
      - `id` string, required — Account ID.
      - `route` string, nullable — Account route.
      - `title` string, nullable — Account display name.
      - `typename` 'Company', required
    - object
      - `id` string, required — User ID.
      - `name` string, nullable — User display name.
      - `typename` 'User', required
      - `username` string — User's username.
  - `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.
  - `object` 'transfer', required — The object type. Discriminates the create response from a send or a claim link.
  - `origin` union, required — Account or user sending funds.
    - object
      - `id` string, required — Account ID.
      - `route` string, nullable — Account route.
      - `title` string, nullable — Account display name.
      - `typename` 'Company', required
    - object
      - `id` string, required — User ID.
      - `name` string, nullable — User display name.
      - `typename` 'User', required
      - `username` string — User's username.
  - `origin_ledger_account_id` string, required — Source ledger account ID.
  - `status` 'processing' | 'succeeded' | 'failed', required — Transfer status. `processing` means the on-chain leg is still executing — poll the transfer until it resolves to `succeeded` or `failed`.

## Other responses

- `404` — Resource not found

## Changes

- **2026-08-07** `f1020c3ecda4` — 1 info
  - added the optional property `error/code` to the response with the `404` status
- **2026-08-05** `6c970f803b46` — 1 info
  - added the required property `status` to the response with the `200` status
- **2026-08-04** `bdd0e2c70d58` — 1 info
  - added the required property `created_by_user` to the response with the `200` status
- **2026-07-27** `8d1ddeb8dc33` — 1 info
  - added the required property `object` to the response with the `200` status

[Change history](https://skmtc.dev/whop/apis/whop-api/changes/transfers/:id/get.md)

---

[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/a8a43db4255f/schema)
