Retrieve options unusual activity for a specific underlying symbol (e.g. AAPL, TSLA). Returns options unusual activity data such as unusual volume and block trades.
Use Case: Show unusual options activity for a single underlying (e.g. on a stock detail page) to surface notable call/put flow and block trades.
| Parameter | Type | Required | Description |
|---|---|---|---|
symbol | string | Yes | Underlying stock symbol (e.g. AAPL, TSLA). |
200 OK with a JSON object containing a trades array. Each trade includes:
| Field | Type | Description |
|---|---|---|
symbol | string | Underlying symbol (e.g. AAPL) |
timestamp | string | Trade timestamp (ISO 8601) |
type | string | Trade type (e.g. block) |
total_value | number | Total dollar value of the trade |
total_size | number | Total contract size |
average_price | number | Average price per contract |
contract | string | Option contract identifier |
ask_at_execution | number | Ask price at execution |
bid_at_execution | number | Bid price at execution |
sentiment | string | Sentiment (e.g. bearish, bullish) |
underlying_price_at_execution | number | Underlying price at execution |
400 when symbol is missing or invalid (including provider validation), 401 unauthorized, 500 when the feature is not configured or the provider fails.Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Underlying stock symbol (e.g. AAPL, TSLA).
Options unusual activity: object with trades array. Each trade has symbol, timestamp, type (e.g. block), total_value, total_size, average_price, contract, ask_at_execution, bid_at_execution, sentiment, underlying_price_at_execution.
Response for GET /v1/options/unusual_activity/{symbol}. Contains a trades array of unusual activity items.
List of unusual options activity trades