Token / Pair Search (GET)

Token / Pair Search: Credit Usage 10

This API is used to search for corresponding tokens or pairs based on name or address

URL

https://api-data-v1.dbotx.com/kline/search?keyword={keyword}

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

{keyword} Search keyword, including token name / token address / pair address Required

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": "9Y4RhAuSgxojh3cAAk8QZDfb3bpfSBwwZnDoMe1Thymj",
			"chain": "solana",
			"dataType": "pair",
			"dex": "pump_swap",
			"baseMint": "So11111111111111111111111111111111111111112",
			"baseSymbol": "SOL",
			"buyAndSellVolume1h": 140022.3328232807,
			"createdAt": 1750818769620,
			"currencyReserve": 87.699813374,
			"currencyReserveUSD": 14259.9896546124,
			"tokenReserve": 816180861.225291,
			"image": "image url",
			"isLaunchMigration": false,
			"lastTradeTime": 1750820978548,
			"mint": "7kicwWuVuzxhFgYP8s6yH4Gp5i4tdr7pB1UdY5fUxXhz",
			"supply": 100000000,
			"tokenPrice": 0.00001567623
		}
	],
	"docs": "https://dbotx.com/docs"
}

Response Parameters

  • id: Trading pair address

  • dataType: Data type, "pair" indicates that this entry is a trading pair

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

  • baseMint: Contract address of the base token in the current liquidity pool

  • baseSymbol: Symbol of the base token in the current liquidity pool

  • buyAndSellVolume1h: 1-hour trading volume of the current liquidity pool

  • currencyReserve: Base currency amount in the pool, determined based on "baseMint", value in SOL / WBNB / USDC / USD1

  • currencyReserveUSD: The USD value of the base token 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

  • mint: Token address

  • tokenPrice: Token price, determined based on "baseMint", with unit in SOL / WBNB / USDC / USD1

Last updated