> ## 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 Historic Price Information

> Gets historic price information for a single token



## OpenAPI

````yaml /data-api/openapi.json get /price/history
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:
  /price/history:
    get:
      tags:
        - Price
      summary: Get Historic Price Information
      description: Gets historic price information for a single token
      parameters:
        - name: token
          in: query
          required: true
          description: The token address
          schema:
            type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PriceHistoryResponse'
              example:
                current: 5.933132498211121
                1d: 6.295227385180826
                3d: 7.7397017357870705
                5d: 7.968063197832061
                7d: 7.739212922516644
                14d: 7.596158185278047
                30d: 8.785669661012452
components:
  schemas:
    PriceHistoryResponse:
      type: object
      properties:
        current:
          type: number
        3d:
          type: number
        5d:
          type: number
        7d:
          type: number
        14d:
          type: number
        30d:
          type: number
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: API Key for authentication

````