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

# Look up single order

> Returns one order you own by session id.

Returns one order you own. Replace `orderID` with your session id.

## Request

<Card>
  **GET** `https://api.4cx.io/session/lookupOrder?orderID=507f1f77bcf86cd799439011` <Badge color="blue">GET</Badge>
</Card>

**Headers:** `Authorization`

| Query     | Description             |
| --------- | ----------------------- |
| `orderID` | Your session / order id |

<CodeGroup>
  ```json Response theme={null}
  {
    "data": {
      "id": "507f1f77bcf86cd799439011",
      "odds": -110,
      "matchedRisk": "0.00",
      "unmatchedRisk": "50.00",
      "type": "moneyline"
    }
  }
  ```
</CodeGroup>
