Pool / Pair Price (GET)

Pool / Pair Price: Credit Usage 10

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

URL

https://api-data-v1.dbotx.com/kline/pair_price?chain={chain}&pair={pair}&start={start}&end={end}

Header: X-API-KEY

(Please do not disclose your API Key to anyone. If you are at risk of losing it, please refresh it.)

Parameters

{chain} solana / bsc Required
{pair} Trading pair address Required
{start} Start time to query, in milliseconds timestamp
{end} 
End time to query, in milliseconds timestamp

Notes

X-API-KEY can be obtained in your "Dashboard", go to check: Dashboard

Results

{
	"err": false,
	"res": {
		"max": 0.6453612092502644,
		"min": 0.11748235935421687,
		"time_start": "2025-07-22T00:00:00.000Z",
		"time_end": "2025-07-23T23:59:59.999Z"
	},
	"docs": "https://dbotx.com/docs"
}

Response Parameters

  • max: Highest price in history or within the query range

  • min: Lowest price in history or within the query range

  • time_start: Queried start time

  • time_end: Queried end time

Last updated