---
title: "List All Disbursements"
method: GET
path: "/disbursements"
tags: ["Disbursements"]
---

# List All Disbursements

`GET /disbursements`

Fetches all disbursements the organization has created. This endpoint supports pagination. The response includes basic aggregations on payments within the disbursement.

## Query parameters

- `page` number
- `page_limit` number
- `q` string
- `status` 'DRAFT' | 'READY' | 'STARTED' | 'PAUSED' | 'COMPLETED'
- `created_at_after` string
- `created_at_before` string
- `sort` 'name' | 'created_at'
- `direction` 'asc' | 'desc'

## Response `200`

A list of Disbursement details

- DisbursementPagination
  - `pagination` Pagination
    - `next` string
    - `prev` string
    - `pages` integer
    - `total` integer
  - `data` Disbursement[]
    - `id` string — The unique identifier of the disbursement
    - `name` string — The name of the disbursement
    - `receiver_registration_message_template` string — The custom template used to send invitations to receivers. The `default` message isn't returned. In the message's content it's possible to add the following template variables: {{.OrganizationName}} which is the Organization Name configured and {{.RegistrationLink}} which is the link generated by SDP to send to the receiver (in case this is not present in the message, it's automatically appended at the end).
    - `registration_contact_type` 'EMAIL' | 'PHONE_NUMBER' | 'EMAIL_AND_WALLET_ADDRESS' | 'PHONE_NUMBER_AND_WALLET_ADDRESS'
    - `wallet` Wallet
      - `id` string
      - `name` string
      - `homepage` string
      - `sep_10_client_domain` string
      - `deep_link_schema` string
      - `created_at` string, date-time
      - `updated_at` string, date-time
    - `asset` Asset — The Stellar asset object
      - `id` string
      - `code` string — Asset code
      - `issuer` string — Asset issuer address
      - `created_at` string, date-time
      - `updated_at` string, date-time
      - `deleted_at` string, date-time
    - `status` 'DRAFT' | 'READY' | 'STARTED' | 'PAUSED' | 'COMPLETED'
    - `verification_field` 'DATE_OF_BIRTH' | 'YEAR_MONTH' | 'PIN' | 'NATIONAL_ID_NUMBER'
    - `status_history` DisbursementStatusHistoryEntry[]
      - `user_id` string
      - `status` 'DRAFT' | 'READY' | 'STARTED' | 'PAUSED' | 'COMPLETED'
      - `timestamp` string, date-time
    - `file_name` string
    - `created_at` string, date-time
    - `updated_at` string, date-time
    - `total_payments` integer — Total number of payments
    - `total_payments_sent` integer — Total number of successful payments
    - `total_payments_failed` integer — Total number of failed payments
    - `total_payments_remaining` integer — Total number of remaining payments
    - `amount_disbursed` string — The total amount disbursed so far
    - `total_amount` string — The total amount to be disbursed
    - `average_amount` string — The average amount per payment

## Other responses

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

---

[API](https://skmtc.net/stellar/apis/stellar-disbursement-platform-api.md) · [All operations](https://skmtc.net/stellar/apis/stellar-disbursement-platform-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/stellar/stellar-disbursement-platform-api/versions/39f9dc64156c/schema)
