Multi-Leg Trade Legs
GET
https://api.unusualwhales.com/api/option-trades/multi-leg/{id}/legs
Request
Security:
Bearer Auth
Authorization: Bearer <token>
Path Parameters
id
string
required
The multi-leg strategy id (UUID) from the trades feed.
Responses
200 422 500Response Body 200 OK
delta
string
Size-weighted delta.
expiry
string
Expiration date (YYYY-MM-DD).
nbbo_ask
string
Size-weighted NBBO ask.
nbbo_bid
string
Size-weighted NBBO bid.
open_interest
integer
Contract open interest.
option_symbol
string
OCC option symbol.
Example:
AAPL260918C00250000
option_symbol_id
integer
Internal option symbol id.
premium
string
Total premium for this leg.
price
string
Size-weighted fill price.
side
string
Dominant aggressor side for this leg: bid or ask.
size
integer
Total contracts for this leg.
strike
string
Strike price.
theta
string
Size-weighted theta.
type
string
call or put.
volume
integer
Contract day volume.
Try It
GET
Path Parameters
Request Sample
curl -X GET "https://api.unusualwhales.com/api/option-trades/multi-leg/{id}/legs" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Accept: application/json"
Response Example
200
{
"data": [
{
"delta": "string",
"expiry": "string",
"nbbo_ask": "string",
"nbbo_bid": "string",
"open_interest": 0
}
]
}