> ## 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.

# Stream Order Status

> Subscribe to real-time order status updates via Server-Sent Events (SSE).

Subscribe to an open event stream to receive live, sub-second status changes of a conversion order. Useful for merchant checkout screens and PWAs to advance their UI automatically once payment lands in escrow.

### Path Parameters

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

### Response

This endpoint streams Server-Sent Events (SSE) using the `text/event-stream` MIME type. Each message contains a JSON-serialized order object under the `data:` prefix:

```http theme={null}
event: message
data: {"order_id":"ord_abc123","status":"deposited"}

event: message
data: {"order_id":"ord_abc123","status":"settled"}
```
