> ## Documentation Index
> Fetch the complete documentation index at: https://docs.shuriken.trade/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Token Stats



## OpenAPI

````yaml GET /api/v2/tokens/{tokenId}/stats
openapi: 3.0.3
info:
  description: Multi-chain DEX trading API for developers
  license:
    name: ''
  title: Shuriken API v2
  version: 2.0.0
servers:
  - url: https://api.shuriken.trade
security: []
tags:
  - description: SplitNOW cross-chain split plan + execute
    name: V2 Splits
  - description: Wallet archive lifecycle (archive / unarchive / bulk-archive)
    name: Wallets
  - description: Token discovery, metadata, and pricing
    name: V2 Tokens
  - description: Quote and execute swaps
    name: V2 Swap
  - description: Limit orders and stop-loss
    name: V2 Trigger
  - description: Managed-agent invocation
    name: V2 Agents
  - description: Portfolio positions and PnL
    name: V2 Portfolio
  - description: User account management
    name: V2 Account
  - description: WebSocket stream discovery, session bootstrap, and channel authorization
    name: V2 WebSocket
  - description: Perpetual trading on Hyperliquid
    name: V2 Perps
  - description: Agent-proposed trade suggestions
    name: V2 Suggestions
paths:
  /api/v2/tokens/{tokenId}/stats:
    get:
      tags:
        - V2 Tokens
      summary: GET /api/v2/tokens/:tokenId/stats — Token trading statistics
      operationId: get_token_stats
      parameters:
        - description: Token ID in chain:address format
          in: path
          name: tokenId
          required: true
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_TokenStatsResponse'
          description: Token trading statistics
      security:
        - bearer_auth: []
components:
  schemas:
    ApiResponse_TokenStatsResponse:
      description: V2 success response envelope
      properties:
        data:
          properties:
            priceChange:
              $ref: '#/components/schemas/TokenPriceChangeStats'
            tokenId:
              type: string
            txns:
              $ref: '#/components/schemas/TokenTxnStats'
            uniqueTraders:
              $ref: '#/components/schemas/TokenUniqueTradersStats'
            volume:
              $ref: '#/components/schemas/TokenVolumeStats'
          required:
            - tokenId
            - volume
            - txns
            - uniqueTraders
            - priceChange
          type: object
        pagination:
          $ref: '#/components/schemas/PaginationInfo'
          nullable: true
        requestId:
          type: string
      required:
        - data
        - requestId
      type: object
    TokenPriceChangeStats:
      properties:
        1h:
          format: double
          nullable: true
          type: number
        24h:
          format: double
          nullable: true
          type: number
        5m:
          format: double
          nullable: true
          type: number
        6h:
          format: double
          nullable: true
          type: number
      type: object
    TokenTxnStats:
      properties:
        buys1h:
          format: int64
          nullable: true
          type: integer
        buys24h:
          format: int64
          nullable: true
          type: integer
        buys5m:
          format: int64
          nullable: true
          type: integer
        buys6h:
          format: int64
          nullable: true
          type: integer
        sells1h:
          format: int64
          nullable: true
          type: integer
        sells24h:
          format: int64
          nullable: true
          type: integer
        sells5m:
          format: int64
          nullable: true
          type: integer
        sells6h:
          format: int64
          nullable: true
          type: integer
      type: object
    TokenUniqueTradersStats:
      properties:
        buyers1h:
          format: int64
          nullable: true
          type: integer
        buyers24h:
          format: int64
          nullable: true
          type: integer
        buyers5m:
          format: int64
          nullable: true
          type: integer
        buyers6h:
          format: int64
          nullable: true
          type: integer
        sellers1h:
          format: int64
          nullable: true
          type: integer
        sellers24h:
          format: int64
          nullable: true
          type: integer
        sellers5m:
          format: int64
          nullable: true
          type: integer
        sellers6h:
          format: int64
          nullable: true
          type: integer
      type: object
    TokenVolumeStats:
      properties:
        buy1h:
          format: double
          nullable: true
          type: number
        buy24h:
          format: double
          nullable: true
          type: number
        buy5m:
          format: double
          nullable: true
          type: number
        buy6h:
          format: double
          nullable: true
          type: number
        sell1h:
          format: double
          nullable: true
          type: number
        sell24h:
          format: double
          nullable: true
          type: number
        sell5m:
          format: double
          nullable: true
          type: number
        sell6h:
          format: double
          nullable: true
          type: number
      type: object
    PaginationInfo:
      description: Page-based pagination info (per RFC)
      properties:
        hasMore:
          type: boolean
        limit:
          format: int32
          minimum: 0
          type: integer
        page:
          format: int32
          minimum: 0
          type: integer
        total:
          format: int32
          minimum: 0
          nullable: true
          type: integer
      required:
        - page
        - limit
        - hasMore
      type: object
  securitySchemes:
    bearer_auth:
      bearerFormat: JWT or sk_{keyId}_{secret}
      description: >-
        Use `Authorization: Bearer <jwt>` for user auth or `Authorization:
        Bearer sk_{keyId}_{secret}` for API key auth.
      scheme: bearer
      type: http

````