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

# Open Orders

## Endpoint

```text theme={null}
POST /info
```

## Request Body

| Parameter | Type   | Description            |
| --------- | ------ | ---------------------- |
| `type`\*  | string | Must be `"openOrders"` |
| `user`\*  | string | User wallet address    |

## Response

```json theme={null}
[
  {
    "coin": "BTC",
    "isPositionTpsl": false,
    "isTrigger": true,
    "limitPx": "49000.00",
    "oid": "0x1a2b3c4d5e6f7890...",
    "venueOid": null,
    "orderType": "stop_limit",
    "origSz": "0.1",
    "reduceOnly": false,
    "side": "B",
    "sz": "0.1",
    "timestamp": 1701234567890,
    "triggerCondition": "tp",
    "triggerPx": "50000.00",
    "parentOrderId": null,
    "protocolSpotTransferStatus": "pending",
    "status": "waitingForTrigger"
  }
]
```

## Response Fields

| Field                        | Type           | Description                            |
| ---------------------------- | -------------- | -------------------------------------- |
| `oid`                        | string         | Internal Notional order id             |
| `venueOid`                   | number \| null | Exchange order id, null until accepted |
| `parentOrderId`              | string \| null | Parent order id for TP/SL child orders |
| `protocolSpotTransferStatus` | string         | Optional spot pre-funding state        |
| `status`                     | string         | Current order status                   |

## Notes

<Note>
  * Results are sorted newest first. - This endpoint includes `waitingForTrigger`,
    `pending_trigger`, `pending_parent_fill`, and prefund-pending spot buy orders in addition to
    `open` and `partial`. - `venueOid` can be `null` for trigger-waiting, deferred child, or pre-venue
    spot prefund orders.
</Note>
