# Futures Display Factor `GET` `https://api.unusualwhales.com/api/futures/display_factors/{security_id}` Display factor for a single CME contract identified by its numeric `security_id`. Available on the Advanced API tier, or with the `futures` add-on — contact oskar@unusualwhales.com, enterprise@unusualwhales.com or nastja.petrovic@unusualwhales.com for access. ## Authentication ``` Authorization: Bearer YOUR_API_KEY ``` ## Path Parameters | Name | Type | Required | Description | |------|------|----------|-------------| | `security_id` | integer | Yes | CME numeric security ID. | ## Response (200) | Field | Type | Description | |-------|------|-------------| | `asset` | string | CME asset code, e.g. ES. | | `contract_size` | string | CME UnitOfMeasureQty (tag 1147). Original size for variable-quantity products. | | `display_factor` | string | Multiplier to convert raw integer price to displayed decimal value. | | `exchange` | string | Exchange MIC, e.g. XCME. | | `multiplier` | string | Cash per 1.0 of price movement (tick_value / tick_size). Use this for notional. | | `security_group` | string | CME security group. | | `security_id` | integer | CME numeric security ID. | | `subtype` | string | Contract subtype. | | `symbol` | string | Dated contract symbol, e.g. ESU6. | | `tick_size` | string | Minimum price increment. | | `tick_value` | string | Cash value of one tick. | | `unit_of_measure` | string | e.g. IPNT, BBL, TRYOZ. | | `updated_at` | string | | ## Example ### curl ```bash curl -X GET "https://api.unusualwhales.com/api/futures/display_factors/{security_id}" \ -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/display_factors/{security_id}", headers=headers) response = conn.getresponse() print(response.read().decode("utf-8")) ``` ## Response Example ```json { "data": { "asset": "string", "contract_size": "string", "display_factor": "string", "exchange": "string", "multiplier": "string" } } ```