> ## 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 Latest Tokens

> Retrieves the latest 100 tokens



## OpenAPI

````yaml /data-api/openapi.json get /tokens/latest
openapi: 3.1.0
info:
  title: Solana Tracker Data API
  description: >-
    The Solana Tracker API gives you powerful, real-time access to the Solana
    ecosystem with comprehensive data endpoints for token data, market metrics,
    price analysis, transactions, wallet tracking, chart visualization, and
    profit analytics.
  version: 1.0.0
  contact:
    email: contact@solanatracker.io
servers:
  - url: https://data.solanatracker.io
    description: Production server
security:
  - apiKey: []
paths:
  /tokens/latest:
    get:
      tags:
        - Tokens
      summary: Get Latest Tokens
      description: Retrieves the latest 100 tokens
      parameters:
        - name: page
          in: query
          description: Page number (1-10)
          schema:
            type: integer
            minimum: 1
            maximum: 10
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TokenInfo'
              example:
                - token:
                    name: Musk
                    symbol: doge2.0
                    mint: CSGoq89FbVgWcG6s91kQBQvn1Evvjm5P7x5q9HSDpump
                    uri: >-
                      https://ipfs-forward.solanatracker.io/ipfs/QmPEMsBtnsE96mw6nwU49dBWki2aGt52JUMt5RExux9Zyd
                    decimals: 6
                    isMutable: false
                    description: doge1 is good-doge 2.0 is better
                    showName: 'true'
                    image: >-
                      https://image.solanatracker.io/proxy?url=https%3A%2F%2Fipfs-forward.solanatracker.io%2Fipfs%2FQmRh5XbiCYP2ALbQnmGeRrhyHJjzYuqEvr4SrANcCHxc6L
                    createdOn: https://pump.fun
                    hasFileMetaData: true
                    strictSocials:
                      website: https://doge2.0
                    creation:
                      creator: Fb8WmTgHy7FCNpQQTpiSZCNn8Wr1h79jkSJGSReGteUr
                      created_tx: >-
                        3BJ3Wu89UBfLNejshBMAZtzdNYebBzxUWz7xR7griM2gimH2mBKf9eg6oZvJMhWEo1faaSXF5HLxM2L3DgPUiyW6
                      created_time: 1760273871
                  pools:
                    - poolId: CSGoq89FbVgWcG6s91kQBQvn1Evvjm5P7x5q9HSDpump
                      liquidity:
                        quote: 60.986650424
                        usd: 11069.589202816489
                      price:
                        quote: 2.8886078982984534e-8
                        usd: 0.000005243065913584202
                      tokenSupply: 1000000000
                      lpBurn: 100
                      tokenAddress: CSGoq89FbVgWcG6s91kQBQvn1Evvjm5P7x5q9HSDpump
                      marketCap:
                        quote: 28.886078982984536
                        usd: 5243.0659135842025
                      decimals: 6
                      security:
                        freezeAuthority: null
                        mintAuthority: null
                      quoteToken: So11111111111111111111111111111111111111112
                      market: pumpfun
                      deployer: Fb8WmTgHy7FCNpQQTpiSZCNn8Wr1h79jkSJGSReGteUr
                      curvePercentage: 2.1887708547147895
                      curve: DUc66dLCd2bjnbFK3EM2xdY8u7gRareyvJyLkEdqXyhf
                      lastUpdated: 1760273874212
                      createdAt: 1760273870581
                      txns:
                        buys: 1
                        sells: 0
                        total: 1
                        volume: 89
                        volume24h: 89
                  events: {}
                  risk: {}
                  buys: 1
                  sells: 0
                  txns: 1
                  holders: 2
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

````