Skip to main content
GET
/
tokens
/
multi
/
graduating
Get Graduating Tokens
curl --request GET \
  --url https://data.solanatracker.io/tokens/multi/graduating \
  --header 'x-api-key: <api-key>'
[
  {
    "token": {
      "name": "<string>",
      "symbol": "<string>",
      "mint": "<string>",
      "uri": "<string>",
      "decimals": 123,
      "description": "<string>",
      "image": "<string>",
      "hasFileMetaData": true,
      "strictSocials": {},
      "creation": {
        "creator": "<string>",
        "created_tx": "<string>",
        "created_time": 123
      }
    },
    "pools": [
      {
        "poolId": "<string>",
        "liquidity": {
          "quote": 123,
          "usd": 123
        },
        "price": {
          "quote": 123,
          "usd": 123
        },
        "tokenSupply": 123,
        "lpBurn": 123,
        "tokenAddress": "<string>",
        "marketCap": {
          "quote": 123,
          "usd": 123
        },
        "market": "<string>",
        "quoteToken": "<string>",
        "decimals": 123,
        "security": {
          "freezeAuthority": "<string>",
          "mintAuthority": "<string>"
        },
        "lastUpdated": 123,
        "deployer": "<string>",
        "txns": {
          "buys": 123,
          "total": 123,
          "volume": 123,
          "volume24h": 123,
          "sells": 123
        },
        "bundleId": "<string>"
      }
    ],
    "events": {},
    "risk": {
      "snipers": {
        "count": 123,
        "totalBalance": 123,
        "totalPercentage": 123,
        "wallets": [
          "<string>"
        ]
      },
      "bundlers": {
        "count": 123,
        "totalBalance": 123,
        "totalPercentage": 123,
        "totalInitialBalance": 123,
        "totalInitialPercentage": 123,
        "wallets": [
          {
            "wallet": "<string>",
            "initialBalance": 123,
            "initialPercentage": 123,
            "balance": 123,
            "percentage": 123,
            "bundleTime": 123
          }
        ]
      },
      "insiders": {
        "count": 123,
        "totalBalance": 123,
        "totalPercentage": 123,
        "wallets": [
          "<string>"
        ]
      },
      "top10": 123,
      "dev": {
        "percentage": 123,
        "amount": 123
      },
      "fees": {},
      "rugged": true,
      "risks": [
        "<string>"
      ],
      "score": 123,
      "jupiterVerified": true
    },
    "buys": 123,
    "sells": 123,
    "txns": 123,
    "holders": 123
  }
]

Authorizations

x-api-key
string
header
required

API Key for authentication

Query Parameters

limit
integer
default:100

Number of tokens to return (default: 100, max: 500)

Required range: 1 <= x <= 500
minCurve
number
default:40

Minimum curve percentage (default: 40)

Required range: 0 <= x <= 100
maxCurve
number
default:100

Maximum curve percentage (default: 100)

Required range: 0 <= x <= 100
minHolders
integer
default:20

Minimum number of holders (default: 20)

Required range: x >= 0
maxHolders
integer

Maximum number of holders

Required range: x >= 0
minCreatedAt
string

Minimum token creation date filter. Accepts Unix timestamp in seconds, Unix timestamp in milliseconds, or ISO date string.

maxCreatedAt
string

Maximum token creation date filter. Accepts Unix timestamp in seconds, Unix timestamp in milliseconds, or ISO date string.

minLiquidity
number

Minimum liquidity filter

maxLiquidity
number

Maximum liquidity filter

minMarketCap
number

Minimum market cap filter

maxMarketCap
number

Maximum market cap filter

markets
string

Filter by specific markets (comma-separated)

minRiskScore
number

Minimum risk score filter

maxRiskScore
number

Maximum risk score filter

rugged
boolean

Filter by rugged status

Response

200 - application/json

Successful response

token
object
pools
object[]
events
object
risk
object
buys
integer
sells
integer
txns
integer
holders
integer