Futures Session Stats
GET
https://api.unusualwhales.com/api/futures/{contract}/stats
Request
Security:
Bearer Auth
Authorization: Bearer <token>
Path Parameters
contract
string
required
Dated CME contract symbol, e.g. ESU6.
Responses
200 422 500Response Body 200 OK
open_interest
integer
session_high
string
Latest session high.
session_low
string
Latest session low.
session_volume
integer
settlement
string
Official settlement price (day-change reference).
settlement_date
string
Try It
GET
Path Parameters
Request Sample
curl -X GET "https://api.unusualwhales.com/api/futures/{contract}/stats" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Accept: application/json"
Response Example
200
{
"data": {
"open_interest": 0,
"session_high": "string",
"session_low": "string",
"session_volume": 0,
"settlement": "string"
}
}