> ## 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-Pool Stats

> Gets detailed stats for a token-pool pair over various time intervals



## OpenAPI

````yaml /data-api/openapi.json get /stats/{token}/{pool}
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:
  /stats/{token}/{pool}:
    get:
      tags:
        - Stats
      summary: Get Token-Pool Stats
      description: Gets detailed stats for a token-pool pair over various time intervals
      parameters:
        - name: token
          in: path
          required: true
          schema:
            type: string
        - name: pool
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StatsResponse'
components:
  schemas:
    StatsResponse:
      type: object
      additionalProperties:
        type: object
        properties:
          buyers:
            type: integer
          sellers:
            type: integer
          volume:
            type: object
            properties:
              buys:
                type: number
              sells:
                type: number
              total:
                type: number
          transactions:
            type: integer
          buys:
            type: integer
          sells:
            type: integer
          wallets:
            type: integer
          price:
            type: number
          priceChangePercentage:
            type: number
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: API Key for authentication

````