---
title: "Retrieve a Payment"
method: GET
path: "/payments/{id}"
tags: ["Payments"]
---

# Retrieve a Payment

`GET /payments/{id}`

Fetches detailed information on a specific payment by  `id `.

## Path parameters

- `id` string, required

## Response `200`

Payment details

- Payment
  - `id` string
  - `amount` string — The amount of the payment
  - `stellar_transaction_id` string — The ID of the transaction in the Stellar network. It can be used tio track the payment in the Stellar network using [Stellar Laboratory](https://laboratory.stellar.org/), or [StellarExpert](https://stellar.expert/).
  - `circle_transfer_request_id` string — The Circle transfer request ID. It is only present when the payment was made using Circle.
  - `stellar_operation_id` string
  - `status` 'DRAFT' | 'READY' | 'PENDING' | 'PAUSED' | 'SUCCESS' | 'FAILED' | 'CANCELED' — The status of the payment
  - `status_history` PaymentStatusHistoryEntry[] — An aggregated list of metadata objects containing the statuses and the timestamp of when these status changes occurred.
    - `status` 'DRAFT' | 'READY' | 'PENDING' | 'PAUSED' | 'SUCCESS' | 'FAILED' | 'CANCELED' — The status of the payment
    - `status_message` string
    - `timestamp` string, date-time
  - `disbursement` DisbursementLite
    - `id` string, uuid — The unique identifier of the disbursement
    - `name` string — The name of the disbursement
    - `status` 'DRAFT' | 'READY' | 'STARTED' | 'PAUSED' | 'COMPLETED'
    - `created_at` string, date-time — The creation timestamp of the disbursement
    - `updated_at` string, date-time — The last update timestamp of the disbursement
  - `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
  - `receiver_wallet` ReceiverWalletLite
    - `id` string
    - `receiver` ReceiverLite
      - `id` string
    - `wallet` WalletLite
      - `id` string
      - `name` string
      - `homepage` string
    - `stellar_address` string
    - `created_at` string
    - `updated_at` string
    - `status` 'DRAFT' | 'READY' | 'REGISTERED' | 'FLAGGED'
  - `created_at` string, date-time
  - `updated_at` string, date-time

## Other responses

- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found

## Changes

- **2025-01-17** `dc42844e575d` — 2 warning
  - added the new `CANCELED` enum value to the `status` response property for the response status `200`
  - added the new `CANCELED` enum value to the `status_history/items/status` response property for the response status `200`

[Change history](https://skmtc.dev/stellar/apis/stellar-disbursement-platform-api/changes/payments/:id/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)
