> ## 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>
  토큰의 현재 가격을 USD 및 네이티브 통화 단위로 가져옵니다. 과거 가격이 필요하면 `/prices` 엔드포인트 또는 GraphQL `DEXTrades` Cube를 사용하세요.
</Note>

**관련**: [GraphQL DEX 거래](/ko/graphql/examples/dex-trades) | MCP: `token_get_price`


## OpenAPI

````yaml /ko/api-reference/openapi-data-ko.yaml GET /v2/token/{chain}/{tokenAddress}/price
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}/price:
    get:
      tags:
        - Token
      summary: 토큰 - 시간별 가격
      description: 특정 타임스탬프의 토큰 가격 조회
      operationId: get.price.by.time
      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
        - name: timestamp
          in: query
          description: 가격 타임스탬프 (Unix 초 단위 타임스탬프)
          required: true
          schema:
            type: integer
            format: int64
          example: 1763461274000
      responses:
        '200':
          description: 시간별 가격 조회
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TokenPrice'
components:
  schemas:
    ChainSymbol:
      type: string
      description: Supported blockchain chains
      enum:
        - sol
        - eth
        - bsc
    TokenPrice:
      type: object
      description: Token price
      required:
        - address
        - timestamp
        - priceInUsd
      properties:
        address:
          type: string
          description: Token address
          example: 6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN
        priceInNative:
          type:
            - string
            - 'null'
          description: Price in native token (alias)
          example: '1000'
        priceInSol:
          type:
            - string
            - 'null'
          description: Price in native token
          example: '1000'
        priceInUsd:
          type: string
          description: Price in USD
          example: '1000'
        timestamp:
          type: integer
          format: int64
          description: Timestamp
          example: 1754055151000
  securitySchemes:
    bearer_auth:
      type: http
      scheme: bearer
      bearerFormat: JWT
    api_key_auth:
      type: apiKey
      in: header
      name: X-API-KEY

````