# Futures Session Stats `GET` `https://api.unusualwhales.com/api/futures/{contract}/stats` Latest session statistics for a contract: official settlement (day-change reference), settlement date, open interest and session volume. Available on the Advanced API tier, or with the `futures` add-on — contact oskar@unusualwhales.com for access. ## Authentication ``` Authorization: Bearer YOUR_API_KEY ``` ## Path Parameters | Name | Type | Required | Description | |------|------|----------|-------------| | `contract` | string | Yes | Dated CME contract symbol, e.g. ESU6. | ## Response (200) | Field | Type | Description | |-------|------|-------------| | `open_interest` | integer | | | `session_volume` | integer | | | `settlement` | string | Official settlement price (day-change reference). | | `settlement_date` | string | | ## Example ### curl ```bash curl -X GET "https://api.unusualwhales.com/api/futures/{contract}/stats" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Accept: application/json" ``` ### Python ```python import http.client conn = http.client.HTTPSConnection("api.unusualwhales.com") headers = {"Authorization": "Bearer YOUR_API_KEY", "Accept": "application/json"} conn.request("GET", "/api/futures/{contract}/stats", headers=headers) response = conn.getresponse() print(response.read().decode("utf-8")) ``` ## Response Example ```json { "data": { "open_interest": 0, "session_volume": 0, "settlement": "string", "settlement_date": "string" } } ```