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

# List Transfer Recipients

`GET /transfers/recipients`

Lists the people and accounts you can send money to.

## Query parameters

- `origin_id` string, required
- `query` string
- `first` integer
- `after` string

## Response `200`

recipients listed

- object
  - `data` union[], required
    - union
      - object
        - `id` string, required — User ID.
        - `name` string, nullable, required — User display name.
        - `object` 'user', required
        - `profile_picture_url` string, nullable, required — User profile image URL.
        - `username` string, nullable, required — User's username.
      - object
        - `id` string, required — Account ID.
        - `logo_url` string, nullable, required — Account logo URL.
        - `object` 'account', required
        - `route` string, nullable, required — Account route.
        - `title` string, nullable, required — Account display name.
  - `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
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Resource not found

---

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