> ## 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 Top Performing Tokens

> Retrieves the top performing tokens launched today within the specified timeframe



## OpenAPI

````yaml /data-api/openapi.json get /top-performers/{timeframe}
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:
  /top-performers/{timeframe}:
    get:
      tags:
        - Tokens
      summary: Get Top Performing Tokens
      description: >-
        Retrieves the top performing tokens launched today within the specified
        timeframe
      parameters:
        - name: timeframe
          in: path
          required: true
          schema:
            type: string
            enum:
              - 5m
              - 15m
              - 30m
              - 1h
              - 6h
              - 12h
              - 24h
      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

````