> ## 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 Token Price

> Gets price information for a single token



## OpenAPI

````yaml /data-api/openapi.json get /price
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:
    get:
      tags:
        - Price
      summary: Get Token Price
      description: Gets price information for a single token
      parameters:
        - name: token
          in: query
          required: true
          description: The token address
          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:
                $ref: '#/components/schemas/PriceResponse'
              example:
                price: 5.933132498211121
                priceQuote: 5.933132498211121
                liquidity: 288082694.430345
                marketCap: 5933128253.797433
                lastUpdated: 1760274023269
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

````