get https://api-data-v1.dbotx.com/kline/pair_Price
This API is used to get the highest / lowest price of a liquidity pool or trading pair within a specific time range or from historical data
Free | Plus | Pro | Enterprise | Credit Usage |
---|---|---|---|---|
✅ | ✅ | ✅ | ✅ | 10 |
Response data
{
"err": false, // Error or not
"res": {
"max": 0.6453612, // Highest price in history or within the query range
"min": 0.1174823, // Lowest price in history or within the query range
"time_start": "2025-07-22T00:00:00.000Z", // Queried start time
"time_end": "2025-07-23T23:59:59.999Z" // Queried end time
}
}