# Options Pulse for a ticker `GET` `https://api.unusualwhales.com/api/stock/{ticker}/options-pulse` The Nasdaq Options Pulse sentiment for a single ticker: the latest intraday snapshot plus the full intraday series (`hr_min` buckets) for the trade date. `sntm_score` is the running daily sentiment, `intvl_sntm_score` the per-bucket sentiment, and `put_txn`/`call_txn` the opening-buy transaction counts. ## Authentication ``` Authorization: Bearer YOUR_API_KEY ``` ## Path Parameters | Name | Type | Required | Description | |------|------|----------|-------------| | `ticker` | SingleTicker | Yes | A single ticker | ## Query Parameters | Name | Type | Required | Description | |------|------|----------|-------------| | `date` | Optional Market Date | No | A trading date in the format of YYYY-MM-DD. This is optional and by default the last trading date. | ## Example ### curl ```bash curl -X GET "https://api.unusualwhales.com/api/stock/{ticker}/options-pulse" \ -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/stock/{ticker}/options-pulse", headers=headers) response = conn.getresponse() print(response.read().decode("utf-8")) ``` ## Response Example ```json {} ```