> ## 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 Multiple Token Prices

> Gets price information for multiple tokens (up to 100)



## OpenAPI

````yaml /data-api/openapi.json get /price/multi
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:
  /price/multi:
    get:
      tags:
        - Price
      summary: Get Multiple Token Prices
      description: Gets price information for multiple tokens (up to 100)
      parameters:
        - name: tokens
          in: query
          required: true
          description: Comma-separated list of token addresses
          schema:
            type: string
        - name: priceChanges
          in: query
          description: Returns price change percentages up to 24 hours ago
          schema:
            type: boolean
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                additionalProperties:
                  $ref: '#/components/schemas/PriceResponse'
              example:
                HEZ6KcNNUKaWvUCBEe4BtfoeDHEHPkCHY9JaDNqrpump:
                  price: 0.000021934650668759846
                  priceQuote: 1.208617203224043e-7
                  liquidity: 29081.321914523014
                  marketCap: 21330.314314819956
                  lastUpdated: 1760274132867
components:
  schemas:
    PriceResponse:
      type: object
      properties:
        price:
          type: number
        liquidity:
          type: number
        marketCap:
          type: number
        lastUpdated:
          type: integer
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: API Key for authentication

````