> ## Documentation Index
> Fetch the complete documentation index at: https://open-fi.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Retrieve a payment

> Fetch the current status of a one-time payment.

<ParamField path="id" type="string" required>
  The payment ID, e.g. `pay_01HZX...`.
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl https://api.openfi.co/v1/payments/pay_01HZX... \
    -H "Authorization: Bearer $OPENFI_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "id": "pay_01HZX...",
    "status": "settled",
    "amount": 2500.00,
    "currency": "USD",
    "settlement": {
      "chain": "aptos",
      "tx_hash": "0x9f3c..."
    },
    "created_at": "2026-08-27T14:03:00Z"
  }
  ```
</ResponseExample>
