Data
Get historical candles
Returns historical OHLCV candles for a symbol and resolution.
GET
Get historical candles
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Returns historical OHLCV candles for a symbol and resolution.
curl --request GET \
--url https://api.quantdesk.app/api/v2/candles{
"success": true,
"data": [
{
"time": 1767394200000,
"open": 167.9,
"high": 169.4,
"low": 167.1,
"close": 168.42,
"volume": 452100
}
]
}curl --request GET \
--url https://api.quantdesk.app/api/v2/candles{
"success": true,
"data": [
{
"time": 1767394200000,
"open": 167.9,
"high": 169.4,
"low": 167.1,
"close": 168.42,
"volume": 452100
}
]
}