Dev Tokens (GET)

Dev Tokens: Credit Usage 10

This API is used to get all tokens and related data created by a specific developer

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 Required
{devAccount} Developer wallet 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": {
		"tokens": [
			{
				"id": "4GQfnkf2Hj7FDEMvH5ecdLM2bwbAz7kYGXts9wdSPgQ2",
				"token": "GJFnxeiKS6J2JBVPpYa6GkyRLf8DvZMxRiatHAEdHg1u",
				"type": "pump",
				"decimals": 6,
				"description": "111",
				"image": "image url",
				"name": "StarBase1",
				"supply": 1000000000,
				"symbol": "StarBase",
				"tokenProgram": "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA",
				"preCreator": "6q41TuhHvuziQBMY1QGUDijSwrpZE8xUqFvbpCadsijN",
				"preDex": "pump",
				"createAt": 1748418709245,
				"migrate": false,
				"marketCap": 4078.5775879756493,
				"devRemoveLiq": false
			}
		],
		"migrated": 0,
		"notMigrated": 2,
		"maxMarketCap": 4078.5775879756493
	},
	"docs": "https://dbotx.com/docs"
}

Response Parameters

  • id: Trading pair address

  • token: Token address

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

  • migrate: "true" indicates the token has been migrated from internal platform

  • marketCap: Market cap of the current token

  • maxMarketCap: Maximum market cap among all tokens created by the Dev

  • migrated: Number of migrated tokens created by the Dev

  • notMigrated: Number of non-migrated tokens created by the Dev

  • devRemoveLiq: Whether the Dev has removed the liquidity

Last updated