New (GET)

New Tokens: Credit Usage 10

This API is used to get newly created pools / pairs from all supported DEXs

URL

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
{filter} {“dexs”:[“pmup”,”raydium_launchpad”,”boop”]}

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": "FZKWTsCiou7rLhHTzYzKU7Zkg6xkKMun2PsMweT6qNrD",
			"token": "CkmYw5h7Bx47qgzwnX7PBSaEZmzYSqMAhR7ZPW6c5NEg",
			"name": "THIS WILL JUMP TO UR MIND",
			"symbol": "MINDCOIN",
			"image": "https://ipfs.io/ipfs/QmNhQY4CNjuDKK25xAaWAr8y2ftKRAbamA93MzDkfLRk4m",
			"supply": 1000000000,
			"priceChange1m": 0.5114597544338335,
			"priceChange5m": 0.5114597544338335,
			"buyTimes1h": 13,
			"sellTimes1h": 3,
			"buyVolume1h": 1248.47814909,
			"sellVolume1h": 50.96161,
			"buyAndSellTimes1h": 16,
			"buyAndSellVolume1h": 1299.43975909,
			"priceChange1h": 0.5114597544338335,
			"priceChange6h": 0.5114597544338335,
			"priceChange24h": 0.5114597544338335,
			"tokenPrice": 6.84561972610271e-8,
			"marketCap": 10093.181724165835,
			"marketCapChange5m": 3415.41098329251,
			"marketCapChangeRate5m": 0.0892905866302864,
			"tokenReserve": 405831505.3012,
			"currencyReserve": 16.942571195,
			"solReserve": 8.120789016,
			"devAccount": "4YthhSW5989FDKo7TpRc2xzcVH4C9rzE4gVR5TWvSezW",
			"holders": 1,
			"poolType": "pump",
			"links": [],
			"launchProgress": 0.488867698595724,
			"isLaunchMigration": false,
			"snipersCount": 0,
			"safetyInfo": {
				"canFrozen": false,
				"freezeAuthority": true,
				"canMint": false,
				"mintAuthority": true,
				"top10HolderRate": null,
				"burnedOrLockedLpPercent": 1
			},
			"createdAt": 1750236563618,
			"tokenCreatedAt": 1750236566259,
			"pairPriceCreatedAt": 1750236566259,
			"pairPriceUpdatedAt": 1750236568732,
			"pumpProgress": 0.488867698595724,
			"isCollect": false,
			"buyAndSellTimes": 16,
			"buyAndSellVolume": 1299.43975909
		}
	],
	"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