---
title: "List All Receivers"
method: GET
path: "/receivers"
tags: ["Receivers"]
---

# List All Receivers

`GET /receivers`

Returns all receivers matching the request criteria. This endpoint supports pagination and filtering on receiver status, receiver attributes, and timestamp. Each payment has details on the receiver, high-level payments metrics, and wallets associated with the receiver.

## Query parameters

- `page` number
- `page_limit` number
- `q` string
- `status` 'DRAFT' | 'READY' | 'REGISTERED' | 'FLAGGED'
- `created_at_after` string
- `created_at_before` string
- `sort` 'created_at'
- `direction` 'asc' | 'desc'

## Response `200`

A paginated list of Receiver details

- ReceiverPagination
  - `pagination` Pagination
    - `next` string
    - `prev` string
    - `pages` integer
    - `total` integer
  - `data` Receiver[]
    - `id` string
    - `phone_number` string
    - `external_id` string
    - `email` string
    - `created_at` string
    - `total_payments` string
    - `successful_payments` string
    - `failed_payments` string
    - `remaining_payments` string
    - `registered_wallets` string
    - `received_amounts` Amount[]
      - `asset_code` string
      - `asset_issuer` string
      - `received_amount` string
    - `wallets` ReceiverWallet[]
      - `id` string
      - `receiver` ReceiverLite
        - `id` string
      - `wallet` WalletLite
        - `id` string
        - `name` string
        - `homepage` string
      - `stellar_address` string
      - `stellar_memo` string
      - `stellar_memo_type` string
      - `created_at` string
      - `updated_at` string
      - `invited_at` string
      - `last_message_sent_at` string — timestamp when the receiver last received an invitation about this wallet
      - `total_payments` string
      - `payments_received` string
      - `failed_payments` string
      - `remaining_payments` string
      - `received_amounts` Amount[]
        - `asset_code` string
        - `asset_issuer` string
        - `received_amount` string
      - `status` 'DRAFT' | 'READY' | 'REGISTERED' | 'FLAGGED'
      - `status_history` ReceiversWalletStatusHistoryEntry[]
        - `status` 'DRAFT' | 'READY' | 'REGISTERED' | 'FLAGGED'
        - `timestamp` string, date-time

## Other responses

- `401` — Unauthorized
- `403` — Forbidden

## Changes

- **2024-12-02** `2b94ab613474` — 1 warning, 1 info
  - removed the optional property `data/items/wallets/items/last_sms_sent` from the response with the `200` status
  - added the optional property `data/items/wallets/items/last_message_sent_at` to the response with the `200` status

[Change history](https://skmtc.dev/stellar/apis/stellar-disbursement-platform-api/changes/receivers/get.md)

---

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