Hot (GET)
Hot Tokens: Credit Usage 10
This API is used to get hot pools / pairs from all supported DEXs
URL
https://api-data-v1.dbotx.com/kline/hot?chain={chain}&sortBy={sortBy}&sort={sort}&interval={interval}
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
{sortBy} “buyAndSellTimes” means sorting by trade times, “buyAndSellVolume” means sorting by trade volume
{sort} -1 means descending order, 1 means ascending order
{interval} 1m / 5m / 1h / 6h / 24h
Notes
X-API-KEY can be obtained in your "Dashboard", go to check: Dashboard
In the paging type interface, use the next field in the return value as the query parameter for the next page (if next == null, it means that paging has ended)
Results
{
"err": false,
"res": [
{
"id": "21YnaVkwNQN6yXESuw8iti7ADx6BeBvst7DsyX3WsLTZ",
"token": "6Cb4uayXmLBZb2VCkwghUd4CatWseG5Q5WWBwKboPUMP",
"image": "image url",
"name": "No Dump Agreement",
"supply": 1000000000,
"symbol": "NDA",
"buyAndSellTimes1h": 27445,
"buyAndSellVolume1h": 21170238.152733922,
"buyTimes1h": 13506,
"buyVolume1h": 10608034.10061039,
"priceChange1h": 5.882075471698113,
"priceChange1m": 0.13388326986488439,
"priceChange24h": 5.882075471698113,
"priceChange5m": -0.04094281153159926,
"priceChange6h": 5.882075471698113,
"sellTimes1h": 13939,
"sellVolume1h": 10562204.052123532,
"tokenPrice": 6.705268798513395e-7,
"marketCap": 99794.51552827487,
"marketCapChange5m": -4260.2965602984295,
"marketCapChangeRate5m": -0.05173049354904775,
"tokenReserve": 608911173.135253,
"currencyReserve": 408.291309029,
"solReserve": 384.355687857,
"devAccount": "FJzVq4iLDoF4GWT3jRmaRZ1aMSo2JKo5YQrnamkmwctR",
"holders": 183,
"poolType": "pump_swap",
"links": [
{
"label": "website",
"url": "https://x.com/i/communities/1935172597966352809"
},
{
"label": "twitter",
"url": "https://x.com/i/communities/1935172597966352809"
}
],
"isLaunchMigration": false,
"snipersCount": 6,
"safetyInfo": {
"canFrozen": false,
"freezeAuthority": true,
"canMint": false,
"mintAuthority": true,
"top10HolderRate": 0.203338553422161,
"burnedOrLockedLpPercent": null
},
"createdAt": 1750216526542,
"tokenCreatedAt": 1750216530440,
"pairPriceCreatedAt": 1750216530440,
"pairPriceUpdatedAt": 1750220010851,
"isCollect": false,
"buyAndSellTimes": 27445,
"buyAndSellVolume": 21170238.152733922
}
],
"docs": "https://dbotx.com/docs"
}
Response Parameters
Last updated