> ## Documentation Index
> Fetch the complete documentation index at: https://docs.solanatracker.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Graduating Tokens

> Overview of all graduating launchpad tokens (Pump.fun, letsbonk.fun, jupiter studio etc)



## OpenAPI

````yaml /data-api/openapi.json get /tokens/multi/graduating
openapi: 3.1.0
info:
  title: Solana Tracker Data API
  description: >-
    Solana Tracker Data API for token prices, holders, trades, charts, wallet
    data, risk signals, and market analytics.
  version: 1.0.0
  contact:
    email: contact@solanatracker.io
servers:
  - url: https://data.solanatracker.io
    description: Production server
security:
  - apiKey: []
paths:
  /tokens/multi/graduating:
    get:
      tags:
        - Tokens
      summary: Get Graduating Tokens
      description: >-
        Overview of all graduating launchpad tokens (Pump.fun, letsbonk.fun,
        jupiter studio etc)
      parameters:
        - name: limit
          in: query
          description: 'Number of tokens to return (default: 100, max: 500)'
          schema:
            type: integer
            minimum: 1
            maximum: 500
            default: 100
        - name: minCurve
          in: query
          description: 'Minimum curve percentage (default: 40)'
          schema:
            type: number
            minimum: 0
            maximum: 100
            default: 40
        - name: maxCurve
          in: query
          description: 'Maximum curve percentage (default: 100)'
          schema:
            type: number
            minimum: 0
            maximum: 100
            default: 100
        - name: minHolders
          in: query
          description: 'Minimum number of holders (default: 20)'
          schema:
            type: integer
            minimum: 0
            default: 20
        - name: maxHolders
          in: query
          description: Maximum number of holders
          schema:
            type: integer
            minimum: 0
        - name: minCreatedAt
          in: query
          description: >-
            Minimum token creation date filter. Accepts Unix timestamp in
            seconds, Unix timestamp in milliseconds, or ISO date string.
          schema:
            type: string
        - name: maxCreatedAt
          in: query
          description: >-
            Maximum token creation date filter. Accepts Unix timestamp in
            seconds, Unix timestamp in milliseconds, or ISO date string.
          schema:
            type: string
        - name: minLiquidity
          in: query
          description: Minimum liquidity filter
          schema:
            type: number
        - name: maxLiquidity
          in: query
          description: Maximum liquidity filter
          schema:
            type: number
        - name: minMarketCap
          in: query
          description: Minimum market cap filter
          schema:
            type: number
        - name: maxMarketCap
          in: query
          description: Maximum market cap filter
          schema:
            type: number
        - name: markets
          in: query
          description: Filter by specific markets (comma-separated)
          schema:
            type: string
        - name: minRiskScore
          in: query
          description: Minimum risk score filter
          schema:
            type: number
        - name: maxRiskScore
          in: query
          description: Maximum risk score filter
          schema:
            type: number
        - name: rugged
          in: query
          description: Filter by rugged status
          schema:
            type: boolean
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TokenInfo'
components:
  schemas:
    TokenInfo:
      type: object
      properties:
        token:
          $ref: '#/components/schemas/Token'
        pools:
          type: array
          items:
            $ref: '#/components/schemas/Pool'
        events:
          $ref: '#/components/schemas/Events'
        risk:
          $ref: '#/components/schemas/Risk'
        buys:
          type: integer
        sells:
          type: integer
        txns:
          type: integer
        holders:
          type: integer
    Token:
      type: object
      properties:
        name:
          type: string
        symbol:
          type: string
        mint:
          type: string
        uri:
          type: string
        decimals:
          type: integer
        description:
          type: string
        image:
          type: string
        hasFileMetaData:
          type: boolean
        strictSocials:
          type: object
        creation:
          type: object
          properties:
            creator:
              type: string
            created_tx:
              type: string
            created_time:
              type: integer
    Pool:
      type: object
      properties:
        poolId:
          type: string
        liquidity:
          type: object
          properties:
            quote:
              type: number
            usd:
              type: number
        price:
          type: object
          properties:
            quote:
              type: number
            usd:
              type: number
        tokenSupply:
          type: number
        lpBurn:
          type: integer
        tokenAddress:
          type: string
        marketCap:
          type: object
          properties:
            quote:
              type: number
            usd:
              type: number
        market:
          type: string
        quoteToken:
          type: string
        decimals:
          type: integer
        security:
          type: object
          properties:
            freezeAuthority:
              type: string
              nullable: true
            mintAuthority:
              type: string
              nullable: true
        lastUpdated:
          type: integer
        deployer:
          type: string
        txns:
          type: object
          properties:
            buys:
              type: integer
            total:
              type: integer
            volume:
              type: number
            volume24h:
              type: number
            sells:
              type: integer
        bundleId:
          type: string
    Events:
      type: object
      additionalProperties:
        type: object
        properties:
          priceChangePercentage:
            type: number
    Risk:
      type: object
      properties:
        snipers:
          type: object
          properties:
            count:
              type: integer
            totalBalance:
              type: number
            totalPercentage:
              type: number
            wallets:
              type: array
              items:
                type: string
        bundlers:
          type: object
          properties:
            count:
              type: integer
            totalBalance:
              type: number
            totalPercentage:
              type: number
            totalInitialBalance:
              type: number
            totalInitialPercentage:
              type: number
            wallets:
              type: array
              items:
                type: object
                properties:
                  wallet:
                    type: string
                  initialBalance:
                    type: number
                  initialPercentage:
                    type: number
                  balance:
                    type: number
                  percentage:
                    type: number
                  bundleTime:
                    type: integer
        insiders:
          type: object
          properties:
            count:
              type: integer
            totalBalance:
              type: number
            totalPercentage:
              type: number
            wallets:
              type: array
              items:
                type: string
        top10:
          type: number
        dev:
          type: object
          properties:
            percentage:
              type: number
            amount:
              type: number
        fees:
          type: object
          additionalProperties:
            type: number
        rugged:
          type: boolean
        risks:
          type: array
          items:
            type: string
        score:
          type: integer
        jupiterVerified:
          type: boolean
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: API Key for authentication

````