Futures Candles (OHLCV)
GET
https://api.unusualwhales.com/api/futures/{contract}/candles
Request
Security:
Bearer Auth
Authorization: Bearer <token>
Path Parameters
contract
string
required
Dated CME contract symbol, e.g. ESU6.
Query Parameters
interval
string
optional
Candle interval.
Default:
1m
enum: 1m, 5m, 1d
range
string
optional
History range.
Default:
1d
enum: 1d, 3d, 5d, 1w, 1m, 3m, 6m, 1y, 5y
Responses
200 422 500Response Body 200 OK
c
string
Close
date
string
Trading date
end
string
h
string
High
l
string
Low
o
string
Open
start
string
v
integer
Volume
Try It
GET
Path Parameters
Query Parameters
Request Sample
curl -X GET "https://api.unusualwhales.com/api/futures/{contract}/candles" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Accept: application/json"
Response Example
200
{
"data": [
{
"c": "string",
"date": "string",
"end": "string",
"h": "string",
"l": "string"
}
]
}