Skip to main content
GET
/
market
/
candlestick
cURL
curl --request GET \
  --url http://localhost:10112/market/candlestick
{
  "candles": [
    {
      "t": 1,
      "l": "<string>",
      "h": "<string>",
      "o": "<string>",
      "c": "<string>",
      "v": "<string>"
    }
  ],
  "has_more": true
}

Query Parameters

condition_id
string

Market condition ID (hex)

position_id
string

Position/token ID

resolution
string
required

Candle interval: 1, 5, 15, 30, 60, 240, D, 1D

count_back
integer<int32>

Number of candles (max: 2500)

from
integer<int64>

Start timestamp (Unix seconds)

to
integer<int64>

End timestamp (Unix seconds)

Response

200 - application/json

OHLCV candlestick data

candles
object[]
required
has_more
boolean
required
Last modified on February 19, 2026