> ## 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 lowest and highest price in time range

> Gets the lowest and highest price in a time range



## OpenAPI

````yaml /data-api/openapi.json get /price/history/range
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/range:
    get:
      tags:
        - Price
      summary: Get lowest and highest price in time range
      description: Gets the lowest and highest price in a time range
      parameters:
        - name: token
          in: query
          required: true
          description: The token address
          schema:
            type: string
        - name: time_from
          in: query
          required: true
          description: Start time (unix timestamp)
          schema:
            type: integer
        - name: time_to
          in: query
          required: true
          description: End time (unix timestamp)
          schema:
            type: integer
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PriceRangeResponse'
              example:
                token: HEZ6KcNNUKaWvUCBEe4BtfoeDHEHPkCHY9JaDNqrpump
                price:
                  lowest:
                    price: 0.000005754645330040387
                    marketcap: 5596.095215452651
                    time: 1740007974
                  highest:
                    price: 0.003416286604926481
                    marketcap: 3322162.188631335
                    time: 1740216420
components:
  schemas:
    PriceRangeResponse:
      type: object
      properties:
        token:
          type: string
        price:
          type: object
          properties:
            lowest:
              type: object
              properties:
                price:
                  type: number
                time:
                  type: integer
            highest:
              type: object
              properties:
                price:
                  type: number
                time:
                  type: integer
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: API Key for authentication

````