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

# List my open orders

> Lists your unmatched open offers on the exchange.

Lists your unmatched open offers on the exchange. This is the 4cx route used by the product for open-order state (there is no `/session/getOrdersByUser` route in core-api).

## Request

<Card>
  **GET** `https://api.4cx.io/user/getOpenOffers` <Badge color="blue">GET</Badge>
</Card>

**Headers:** `Authorization`

<CodeGroup>
  ```json Response theme={null}
  {
    "data": {
      "offers": [
        {
          "id": "ord_001",
          "gameID": "evt_001",
          "risk": 50,
          "odds": -110,
          "type": "moneyline",
          "origin": "offer"
        }
      ]
    }
  }
  ```
</CodeGroup>
