> ## Documentation Index
> Fetch the complete documentation index at: https://docs.usetapp.xyz/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Order

> Retrieve status, payment details, and settlement logs for an existing order by ID.

Retrieve the live status and payout logs of a specific order. Useful for polling status if webhook deliveries are interrupted.

### Path Parameters

<ParamField path="id" type="string" required>
  The unique UUID ID of the order.
</ParamField>

### Header Parameters

<ParamField header="API-Key" type="string" required>
  Unique UUID API Key for the sender profile.
</ParamField>

### Response

Returns the standard response envelope wrapping the order details payload.

<ResponseField name="status" type="string">
  Response state (`success`).
</ResponseField>

<ResponseField name="data" type="object">
  Order details payload.

  <ResponseField name="order_id" type="string">
    Unique prefix ID of the order (`ord_...`).
  </ResponseField>

  <ResponseField name="status" type="string">
    Current state. One of: `awaiting_deposit`, `deposited`, `processing`, `settled`, `expired`, `refunded`, `failed`.
  </ResponseField>

  <ResponseField name="rate_quoted" type="string">
    The exchange rate locked for this order.
  </ResponseField>

  <ResponseField name="fiat_amount" type="string">
    The final local fiat payout amount.
  </ResponseField>

  <ResponseField name="sui_tx_hash" type="string">
    The transaction digest of the customer's stablecoin deposit on the Sui network.
  </ResponseField>

  <ResponseField name="settlement_tx_id" type="string">
    The payment gateway's unique transaction reference for the local fiat payout.
  </ResponseField>
</ResponseField>

***

### Example Payloads

<RequestExample>
  ```http Get Order theme={null}
  GET /v1/sender/orders/0e0e76d4-44ee-4d4a-8e51-2e1f6e6d8a7c HTTP/1.1
  Host: b2b.usetapp.xyz
  API-Key: your_sender_api_key_uuid
  ```
</RequestExample>

<ResponseExample>
  ```json Response (200 OK) theme={null}
  {
    "status": "success",
    "message": "Order retrieved",
    "data": {
      "order_id": "ord_abc123",
      "status": "settled",
      "rate_quoted": "1530.50",
      "fiat_amount": "153050.00",
      "sui_tx_hash": "0x4e6bc7...",
      "settlement_tx_id": "sh_tx_78491823",
      "created_at": "2026-06-13T12:00:00Z"
    }
  }
  ```
</ResponseExample>
