API Reference
DBot OfficialDBot DashboardPricing

Dev Tokens

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

FreePlusProEnterpriseCredit Usage
10

Response data

{
  "err": false, // Error or not
  "res": {
    "tokens": [
      {
        "id": "4GQfnkf2Hj7FDEMvH5ecdLM2bwbAz7kYGXts9wdSPgQ2", // Trading pair address
        "token": "GJFnxeiKS6J2JBVPpYa6GkyRLf8DvZMxRiatHAEdHg1u", // Token address
        "type": "pump", // Type of the current liquidity pool, including: raydium_amm, raydium_clmm, pump, pancake_v2, pancake_v3, etc.
        "description": "111", // Token description
        "image": "image url", // Token image URL
        "name": "StarBase1", // Token name
        "supply": 1000000000, // Token supply
        "symbol": "StarBase", // Token symbol
        "createAt": 1748418709245, // Token creation time
        "migrate": false, // "true" indicates the token has been migrated from internal platform
        "marketCap": 4078.5775879756493, // Market cap of the current token
        "devRemoveLiq": false // Whether the Dev has removed the liquidity
      }
    ],
    "migrated": 0, // Number of migrated tokens created by the Dev
    "notMigrated": 2, // Number of non-migrated tokens created by the Dev
    "maxMarketCap": 40 // Maximum market cap among all tokens created by the Dev
  }
}
Language