Get market candlesticks by mint address
curl --request GET \
--url https://dev-prediction-markets-api.dflow.net/api/v1/market/by-mint/{mint_address}/candlesticks \
--header 'x-api-key: <api-key>'{
"code": "<string>",
"msg": "<string>"
}Candlesticks
Get Market Candlesticks by Mint
API reference for GET /api/v1/market/by-mint//candlesticks
GET
/
api
/
v1
/
market
/
by-mint
/
{mint_address}
/
candlesticks
Get market candlesticks by mint address
curl --request GET \
--url https://dev-prediction-markets-api.dflow.net/api/v1/market/by-mint/{mint_address}/candlesticks \
--header 'x-api-key: <api-key>'{
"code": "<string>",
"msg": "<string>"
}Documentation Index
Fetch the complete documentation index at: https://pond.dflow.net/llms.txt
Use this file to discover all available pages before exploring further.
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
API key for authentication. Contact hello@dflow.net to obtain an API key.
Path Parameters
Market mint address (ledger or outcome mint)
Query Parameters
Start timestamp (Unix timestamp in seconds, not milliseconds)
Required range:
x >= 0End timestamp (Unix timestamp in seconds, not milliseconds)
Required range:
x >= 0Time period length of each candlestick in minutes (1, 60, or 1440)
Required range:
x >= 0Response
Market candlesticks retrieved successfully
⌘I