> ## 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 All-Time High Price

> Retrieves the all-time high price of a token (since the data API started recording)



## OpenAPI

````yaml /data-api/openapi.json get /tokens/{tokenAddress}/ath
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/{tokenAddress}/ath:
    get:
      tags:
        - Tokens
      summary: Get All-Time High Price
      description: >-
        Retrieves the all-time high price of a token (since the data API started
        recording)
      parameters:
        - name: tokenAddress
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ATHResponse'
              example:
                highest_price: 2.6710420828327996
                highest_market_cap: 2670996289.82
                timestamp: 1737327537255
                pool_id: Bzc9NZfMqkXR6fz1DBph7BDf9BroyEf6pnzESP7v5iiw
components:
  schemas:
    ATHResponse:
      type: object
      properties:
        highest_price:
          type: number
        timestamp:
          type: integer
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: API Key for authentication

````