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

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

  2. 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

  • id: Trading pair address

  • token: Token address

  • tokenPrice: Token price in base currency

  • poolType: Type of the current liquidity pool, including: raydium_amm, raydium_clmm, pump, pancake_v2, pancake_v3, etc.

  • buyTimes(1m/5m/1h/6h/24h): Buy times of the current pair in 1 minute, 5 minutes, 1 hour, 6 hours, and 24 hours

  • sellTimes(1m/5m/1h/6h/24h): Sell times of the current pair in 1 minute, 5 minutes, 1 hour, 6 hours, and 24 hours

  • buyAndSellTimes(1m/5m/1h/6h/24h): Buy and sell times of the current pair in 1 minute, 5 minutes, 1 hour, 6 hours, and 24 hours

  • buyVolume(1m/5m/1h/6h/24h): Buy volume of the current pair in 1 minute, 5 minutes, 1 hour, 6 hours, and 24 hours

  • sellVolume(1m/5m/1h/6h/24h): Sell volume of the current pair in 1 minute, 5 minutes, 1 hour, 6 hours, and 24 hours

  • buyAndSellVolume(1m/5m/1h/6h/24h): Buy and sell volume of the current pair in 1 minute, 5 minutes, 1 hour, 6 hours, and 24 hours

  • priceChange(1m/5m/1h/6h/24h): Price change of the current pair in 1 minute, 5 minutes, 1 hour, 6 hours, and 24 hours (e.g., 0.1 means 10%)

  • snipersCount: Number of sniper wallets of the current pair

  • devAccount: Developer wallet address of the current token

  • holders: Number of holders of the current token

  • isCollect: Whether the current pair is favorited

  • marketCap: Market cap of the current token

  • marketCapChange5m: 5-minute change in market cap of the current token

  • marketCapChangeRate5m: 5-minute percentage change in market cap of the current token

  • currencyReserve: Native token amount in the current liquidity pool

  • tokenReserve: Token amount in the current liquidity pool

  • isLaunchMigration: "true" indicates the current liquidity pool was officially created by platforms like Pump

  • canFrozen: "true" means the token is freezeable

  • canMint: "true" means the token is mintable

  • top10HolderRate: Top 10 holding ratio

  • burnedOrLockedLpPercent: Pool burnt ratio

  • buyTax: Token buy tax rate

  • sellTax: Token sell tax rate

  • devPosition: Dev holding status, “increased” means added position, “decreased” means reduced position, “cleared” means fully exited, “unchanged” means still holding

  • isHoneypot: "true" means the token is a honeypot

  • isOpenSource: "true" means the token is open source

  • tradingCooldown: "true" means the token has a trading cooldown

Last updated