Skip to main content
GET
/
api
/
v1
/
event
/
{ticker}
/
candlesticks
Get event candlesticks by ticker
curl --request GET \
  --url https://dev-prediction-markets-api.dflow.net/api/v1/event/{ticker}/candlesticks \
  --header 'x-api-key: <api-key>'
{
  "code": "<string>",
  "msg": "<string>"
}
There is a maximum of 5,000 candlesticks per request. If your startTs, endTs, and periodInterval parameters would produce more than 5,000 results, the request will return a 400 error. Either narrow the time range or increase the period interval.

Authorizations

x-api-key
string
header
required

API key for authentication. Contact hello@dflow.net to obtain an API key.

Path Parameters

ticker
string
required

Event ticker

Query Parameters

startTs
integer<int64>
required

Start timestamp (Unix timestamp in seconds, not milliseconds)

Required range: x >= 0
endTs
integer<int64>
required

End timestamp (Unix timestamp in seconds, not milliseconds)

Required range: x >= 0
periodInterval
integer<int32>
required

Time period length of each candlestick in minutes (1, 60, or 1440)

Required range: x >= 0

Response

Event candlesticks retrieved successfully