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

# 토큰 - 통계

> 토큰 통계 조회

<Note>
  거래량, 거래 건수, 고유 거래자 수, 가격 변동 등 여러 시간 구간에 걸친 토큰의 집계 거래 통계를 가져옵니다.
</Note>

**관련**: [GraphQL OHLC & 통계](/ko/graphql/examples/ohlc-stats) | MCP: `token_get_stats`


## OpenAPI

````yaml /ko/api-reference/openapi-data-ko.yaml GET /v2/token/{chain}/{tokenAddress}/stats
openapi: 3.1.0
info:
  title: Services API
  description: Services API
  contact:
    name: AI
    email: ai@sx.ai
  license:
    name: MIT
  version: '1.0'
servers:
  - url: https://api.chainstream.io
    description: Production
security:
  - bearer_auth: []
  - api_key_auth: []
tags:
  - name: Blockchain
    description: 블록체인 관련 작업
  - name: Token
    description: 토큰 관련 작업
  - name: Trade
    description: 거래 관련 작업
  - name: Wallet
    description: 지갑 관련 작업
  - name: Dex
    description: DEX 관련 작업
  - name: Ranking
    description: 랭킹 관련 작업
  - name: DexPool
    description: DEX 풀 관련 작업
  - name: Watchlist
    description: 워치리스트 관련 작업
  - name: KYT
    description: KYT 관련 작업
  - name: Webhook
    description: Webhook 관련 작업
  - name: RedPacket
    description: 레드패킷 관련 작업
  - name: IPFS
    description: IPFS 관련 작업
  - name: DexScreener
    description: DexScreener 관련 작업
paths:
  /v2/token/{chain}/{tokenAddress}/stats:
    get:
      tags:
        - Token
      summary: 토큰 - 통계
      description: 토큰 통계 조회
      operationId: get.stats
      parameters:
        - name: chain
          in: path
          description: 지원되는 네트워크에 나열된 체인 이름
          required: true
          schema:
            $ref: '#/components/schemas/ChainSymbol'
          example: sol
        - name: tokenAddress
          in: path
          description: 토큰 주소
          required: true
          schema:
            type: string
          example: 6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN
      responses:
        '200':
          description: 통계 조회
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TokenStats'
components:
  schemas:
    ChainSymbol:
      type: string
      description: Supported blockchain chains
      enum:
        - sol
        - eth
        - bsc
    TokenStats:
      type: object
      description: Token statistics with nested time period data
      required:
        - address
        - periods
      properties:
        address:
          type: string
          description: 토큰 컨트랙트 주소
          example: EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
        periods:
          type: object
          description: >-
            Trade statistics grouped by time period (1m, 5m, 15m, 30m, 1h, 4h,
            6h, 24h).

            Each period contains full OHLCV data, trade counts, and
            previous-period comparisons.

            See `TokenTradeStatPeriod` schema for all fields.
          additionalProperties:
            $ref: '#/components/schemas/TokenTradeStatPeriod'
          propertyNames:
            type: string
          example:
            6h:
              buyVolumeInUsd: '12000.00'
              buyers: '120'
              buys: '420'
              closeInUsd: '0.15600000'
              currentLiquidityInUsd: '250000.00'
              highInUsd: '0.15900000'
              lowInUsd: '0.15100000'
              openInUsd: '0.15200000'
              priceChangeRatioInUsd: '0.02631579'
              sellVolumeInUsd: '9800.00'
              sellers: '95'
              sells: '360'
              totalVolumeInUsd: '21800.00'
              traders: '215'
              trades: '780'
    TokenTradeStatPeriod:
      type: object
      description: Single time window trade statistics period
      properties:
        averagePriceInNative:
          type: string
          description: 네이티브 토큰 기준 평균 가격
          example: '0.00005100'
        averagePriceInUsd:
          type: string
          description: USD 기준 평균 가격
          example: '0.15300000'
        buySellRatio:
          type:
            - string
            - 'null'
          description: 매수 대비 매도 비율
          example: '1.5510'
        buyVolume:
          type: string
          description: 토큰 수량 기준 매수 거래량
          example: '15000000.12345678'
        buyVolumeInNative:
          type: string
          description: 네이티브 토큰 기준 매수 거래량
          example: '750.50'
        buyVolumeInUsd:
          type: string
          description: USD 기준 매수 거래량
          example: '45000.00'
        buyers:
          type: string
          description: 고유 매수자 수
          example: '320'
        buys:
          type: string
          description: 매수 거래 건수
          example: '1520'
        closeInNative:
          type: string
          description: 네이티브 토큰 기준 종가
          example: '0.00005200'
        closeInUsd:
          type: string
          description: USD 기준 종가
          example: '0.15600000'
        currentLiquidityInUsd:
          type: string
          description: USD 기준 현재 유동성
          example: '250000.00'
        dappProgramCount:
          type: string
          description: DEX 프로그램 수
          example: '8'
        highInNative:
          type: string
          description: 네이티브 토큰 기준 고가
          example: '0.00005300'
        highInUsd:
          type: string
          description: USD 기준 고가
          example: '0.15900000'
        liquidityChangeRatio:
          type:
            - string
            - 'null'
          description: 이전 기간 대비 유동성 변동률
          example: '0.0417'
        lowInNative:
          type: string
          description: 네이티브 토큰 기준 저가
          example: '0.00005000'
        lowInUsd:
          type: string
          description: USD 기준 저가
          example: '0.15000000'
        openInNative:
          type: string
          description: 네이티브 토큰 기준 시가
          example: '0.00005000'
        openInUsd:
          type: string
          description: USD 기준 시가
          example: '0.15000000'
        poolCount:
          type: string
          description: 유동성 풀 수
          example: '12'
        prevBuyVolume:
          type: string
          description: 이전 기간 토큰 수량 기준 매수 거래량
          example: '14000000.00'
        prevBuyVolumeInNative:
          type: string
          description: 이전 기간 네이티브 토큰 기준 매수 거래량
          example: '700.00'
        prevBuyVolumeInUsd:
          type: string
          description: 이전 기간 USD 기준 매수 거래량
          example: '42000.00'
        prevBuyers:
          type: string
          description: 이전 기간 고유 매수자 수
          example: '300'
        prevBuys:
          type: string
          description: 이전 기간 매수 건수
          example: '1400'
        prevCloseInNative:
          type: string
          description: 이전 기간 네이티브 토큰 기준 종가
          example: '0.00005100'
        prevCloseInUsd:
          type: string
          description: 이전 기간 USD 기준 종가
          example: '0.15100000'
        prevDappProgramCount:
          type: string
          description: 이전 기간 DEX 프로그램 수
          example: '7'
        prevHighInNative:
          type: string
          description: 이전 기간 네이티브 토큰 기준 고가
          example: '0.00005100'
        prevHighInUsd:
          type: string
          description: 이전 기간 USD 기준 고가
          example: '0.15200000'
        prevLiquidityInUsd:
          type: string
          description: 이전 기간 USD 기준 유동성
          example: '240000.00'
        prevLowInNative:
          type: string
          description: 이전 기간 네이티브 토큰 기준 저가
          example: '0.00004800'
        prevLowInUsd:
          type: string
          description: 이전 기간 USD 기준 저가
          example: '0.14500000'
        prevOpenInNative:
          type: string
          description: 이전 기간 네이티브 토큰 기준 시가
          example: '0.00004900'
        prevOpenInUsd:
          type: string
          description: 이전 기간 USD 기준 시가
          example: '0.14800000'
        prevPoolCount:
          type: string
          description: 이전 기간 풀 수
          example: '10'
        prevSellVolume:
          type: string
          description: 이전 기간 토큰 수량 기준 매도 거래량
          example: '11000000.00'
        prevSellVolumeInNative:
          type: string
          description: 이전 기간 네이티브 토큰 기준 매도 거래량
          example: '550.00'
        prevSellVolumeInUsd:
          type: string
          description: 이전 기간 USD 기준 매도 거래량
          example: '33000.00'
        prevSellers:
          type: string
          description: 이전 기간 고유 매도자 수
          example: '200'
        prevSells:
          type: string
          description: 이전 기간 매도 건수
          example: '900'
        prevTrades:
          type: string
          description: 이전 기간 총 거래 건수
          example: '2300'
        priceChangeRatioInUsd:
          type: string
          description: USD 기준 가격 변동률
          example: '0.04000000'
        sellVolume:
          type: string
          description: 토큰 수량 기준 매도 거래량
          example: '12000000.98765432'
        sellVolumeInNative:
          type: string
          description: 네이티브 토큰 기준 매도 거래량
          example: '600.40'
        sellVolumeInUsd:
          type: string
          description: USD 기준 매도 거래량
          example: '36000.00'
        sellers:
          type: string
          description: 고유 매도자 수
          example: '210'
        sells:
          type: string
          description: 매도 거래 건수
          example: '980'
        totalVolumeInNative:
          type: string
          description: 네이티브 토큰 기준 총 거래량
          example: '1350.90'
        totalVolumeInUsd:
          type: string
          description: USD 기준 총 거래량
          example: '81000.00'
        traders:
          type: string
          description: 고유 트레이더 수
          example: '530'
        trades:
          type: string
          description: 총 거래 건수
          example: '2500'
        updatedAt:
          type:
            - string
            - 'null'
          description: 마지막 업데이트 타임스탬프
          example: '2026-02-09T08:05:12.345Z'
        volumeChangeRatio:
          type:
            - string
            - 'null'
          description: 이전 기간 대비 거래량 변동률
          example: '0.25'
  securitySchemes:
    bearer_auth:
      type: http
      scheme: bearer
      bearerFormat: JWT
    api_key_auth:
      type: apiKey
      in: header
      name: X-API-KEY

````