MuchFi
CLOB Markets

Get Candlesticks

Get candlestick data for a pool

GET
/clob/markets/{poolId}/candlesticks/{interval}

Path Parameters

poolIdstring

Pool ID

intervalinteger

Interval in minutes

Value in1 | 5 | 15 | 60 | 120 | 240 | 1440 | 10080 | 43200

Query Parameters

startTime?integer

Start time (Unix timestamp)

endTime?integer

End time (Unix timestamp)

limit?integer

Number of candles

Response Body

curl -X GET "https://integrated-api.mainnet.muchfi.xyz/api/clob/markets/string/candlesticks/1?startTime=0&endTime=0&limit=0"
[
  {
    "timestamp": 0,
    "open": 0,
    "high": 0,
    "low": 0,
    "close": 0,
    "volume": 0
  }
]