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

# Physical Card Order Status

> Track the status and shipment details of a physical card order

<ParamField header="Authorization" type="string" required>
  Bearer token: `Bearer YOUR_ACCESS_TOKEN`
</ParamField>

<ParamField path="yativoCardId" type="string" required>
  The Yativo Card account ID.
</ParamField>

<ParamField path="orderId" type="string" required>
  The physical card order ID.
</ParamField>

<RequestExample>
  ```bash theme={null}
  curl -X GET 'https://crypto-api.yativo.com/api/v1/yativo-card/yvc_01HX9KZMB3F7VNQP8R2WDGT4EI/cards/physical/order/ord_01HX9KZMB3F7VNQP8R2WDGT4EN/status' \
    -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "status": "success",
    "message": "Order status retrieved successfully",
    "data": {
      "order_id": "ord_01HX9KZMB3F7VNQP8R2WDGT4EN",
      "yativo_card_id": "yvc_01HX9KZMB3F7VNQP8R2WDGT4EI",
      "status": "shipped",
      "tracking_number": "1Z999AA10123456784",
      "carrier": "UPS",
      "estimated_delivery": "2026-04-02",
      "shipped_at": "2026-03-27T09:00:00Z",
      "created_at": "2026-03-26T12:00:00Z"
    }
  }
  ```
</ResponseExample>
