> ## 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.

# 代幣 - 市值

> 取得代幣市值



## OpenAPI

````yaml /zh-Hant/api-reference/openapi-data-zh-Hant.yaml GET /v2/token/{chain}/{tokenAddress}/marketData
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}/marketData:
    get:
      tags:
        - Token
      summary: 代幣 - 市值
      description: 取得代幣市值
      operationId: get.marketData
      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/TokenMarketData'
components:
  schemas:
    ChainSymbol:
      type: string
      description: Supported blockchain chains
      enum:
        - sol
        - eth
        - bsc
    TokenMarketData:
      type: object
      description: Token market data
      properties:
        athMarketCapInUsd:
          type:
            - string
            - 'null'
          description: |-
            ENTITY.TOKEN_MARKET_DATA.ATH_MARKET_CAP_IN_USD
            All-time-high market cap in USD (max observed since token creation).
          example: '9500000.00'
        bluechipHoldingsRatio:
          type:
            - string
            - 'null'
          description: 藍籌錢包持倉佔總供應量比例
          example: '0.05'
        bluechipTotalHolders:
          type:
            - string
            - 'null'
          description: 藍籌錢包持有者數量
          example: '10'
        bluechipTotalHoldings:
          type:
            - string
            - 'null'
          description: 藍籌錢包總持倉量
          example: '50000'
        bundleHoldingsRatio:
          type:
            - string
            - 'null'
          description: 捆綁錢包持倉佔總供應量比例
          example: '0.018'
        bundleTotalHolders:
          type:
            - string
            - 'null'
          description: 捆綁錢包持有者數量
          example: '12'
        bundleTotalHoldings:
          type:
            - string
            - 'null'
          description: 捆綁錢包總持倉量
          example: '18000'
        circulatingSupply:
          type:
            - string
            - 'null'
          description: 代幣流通供應量
          example: '900000'
        completionRatio:
          type:
            - string
            - 'null'
          description: Bonding Curve 完成比例
          example: '1.0'
        creatorsHoldingsRatio:
          type:
            - string
            - 'null'
          description: 建立者錢包持倉佔總供應量比例
          example: '0.10'
        creatorsTotalHolders:
          type:
            - string
            - 'null'
          description: 建立者錢包持有者數量
          example: '1'
        creatorsTotalHoldings:
          type:
            - string
            - 'null'
          description: 建立者錢包持倉總量
          example: '100000000.00'
        devHoldingsRatio:
          type:
            - string
            - 'null'
          description: 開發者持倉佔總供應量比例
          example: '0.005'
        devTotalHolders:
          type:
            - string
            - 'null'
          description: 開發者錢包持有者數量
          example: '3'
        devTotalHoldings:
          type:
            - string
            - 'null'
          description: 開發者錢包總持倉量
          example: '5000'
        fdvInSol:
          type:
            - string
            - 'null'
          description: 完全稀釋估值（原生代幣計）
          example: '200000'
        fdvInUsd:
          type:
            - string
            - 'null'
          description: 完全稀釋估值（USD 計）
          example: '200000'
        freshHoldingsRatio:
          type:
            - string
            - 'null'
          description: 新錢包持倉佔總供應量比例
          example: '0.01'
        freshTotalHolders:
          type:
            - string
            - 'null'
          description: 新錢包持有者數量
          example: '30'
        freshTotalHoldings:
          type:
            - string
            - 'null'
          description: 新錢包總持倉量
          example: '10000'
        holders:
          type:
            - string
            - 'null'
          description: 代幣持有者總數
          example: '1000'
        insiderHoldingsRatio:
          type:
            - string
            - 'null'
          description: 內部人持倉佔總供應量比例
          example: '0.02'
        insiderTotalHolders:
          type:
            - string
            - 'null'
          description: 內部人錢包持有者數量
          example: '5'
        insiderTotalHoldings:
          type:
            - string
            - 'null'
          description: 內部人錢包總持倉量
          example: '20000'
        kolHoldingsRatio:
          type:
            - string
            - 'null'
          description: KOL 持倉佔總供應量比例
          example: '0.03'
        kolTotalHolders:
          type:
            - string
            - 'null'
          description: KOL（意見領袖）持有者數量
          example: '20'
        kolTotalHoldings:
          type:
            - string
            - 'null'
          description: KOL 錢包總持倉量
          example: '30000'
        marketCapInSol:
          type:
            - string
            - 'null'
          description: 市值（原生代幣計）
          example: '100000'
        marketCapInUsd:
          type:
            - string
            - 'null'
          description: 市值（USD 計）
          example: '100000'
        maxPoolTvlInSol:
          type:
            - string
            - 'null'
          description: 最大池子 TVL（原生代幣計）
          example: '1000.45'
        maxPoolTvlInUsd:
          type:
            - string
            - 'null'
          description: 最大池子 TVL（USD 計）
          example: '150000.00'
        maxSupply:
          type:
            - string
            - 'null'
          description: 代幣最大供應量
        phishingHoldingsRatio:
          type:
            - string
            - 'null'
          description: 釣魚錢包持倉佔總供應量比例
          example: '0.0005'
        phishingTotalHolders:
          type:
            - string
            - 'null'
          description: 被標記為釣魚的持有者數量
          example: '2'
        phishingTotalHoldings:
          type:
            - string
            - 'null'
          description: 被標記為釣魚的錢包持倉總量
          example: '50000.00'
        priceInNative:
          type:
            - string
            - 'null'
          description: 以鏈原生代幣計價的價格
          example: '0.00000261383847574915906643405542'
        priceInSol:
          type:
            - string
            - 'null'
          description: 代幣價格（原生代幣計）
          example: '0.00000261383847574915906643405542'
        priceInUsd:
          type:
            - string
            - 'null'
          description: 代幣價格（USD 計）
          example: '0.00000261383847574915906643405542'
        proHoldingsRatio:
          type:
            - string
            - 'null'
          description: 專業交易者持倉佔總供應量比例
          example: '0.04'
        proTotalHolders:
          type:
            - string
            - 'null'
          description: 專業交易者持有者數量
          example: '25'
        proTotalHoldings:
          type:
            - string
            - 'null'
          description: 專業交易者總持倉量
          example: '40000'
        ratHoldingsRatio:
          type:
            - string
            - 'null'
          description: 老鼠倉錢包持倉佔總供應量比例
          example: '0.0012'
        ratTotalHolders:
          type:
            - string
            - 'null'
          description: 老鼠倉持有者數量
          example: '5'
        ratTotalHoldings:
          type:
            - string
            - 'null'
          description: 老鼠倉錢包持倉總量
          example: '120000.00'
        sandwishHoldingsRatio:
          type:
            - string
            - 'null'
          description: 三明治攻擊持倉佔總供應量比例
          example: '0.015'
        sandwishTotalHolders:
          type:
            - string
            - 'null'
          description: 三明治攻擊錢包持有者數量
          example: '8'
        sandwishTotalHoldings:
          type:
            - string
            - 'null'
          description: 三明治攻擊錢包總持倉量
          example: '15000'
        smartHoldingsRatio:
          type:
            - string
            - 'null'
          description: 聰明錢錢包持倉佔總供應量比例
          example: '0.03'
        smartTotalHolders:
          type:
            - string
            - 'null'
          description: 聰明錢持有者數量
          example: '30'
        smartTotalHoldings:
          type:
            - string
            - 'null'
          description: 聰明錢錢包持倉總量
          example: '3000000.00'
        sniperHoldingsRatio:
          type:
            - string
            - 'null'
          description: 狙擊錢包持倉佔總供應量比例
          example: '0.025'
        sniperTotalHolders:
          type:
            - string
            - 'null'
          description: 狙擊錢包持有者數量
          example: '15'
        sniperTotalHoldings:
          type:
            - string
            - 'null'
          description: 狙擊錢包總持倉量
          example: '25000'
        top100HoldingsRatio:
          type:
            - string
            - 'null'
          description: 前 100 持有者佔總供應量比例
          example: '0.8'
        top100TotalHolders:
          type:
            - string
            - 'null'
          description: 前 100 持有者數量
          example: '100'
        top100TotalHoldings:
          type:
            - string
            - 'null'
          description: 前 100 持有者總持倉量
          example: '800000'
        top10HoldingsRatio:
          type:
            - string
            - 'null'
          description: 前 10 持有者佔總供應量比例
          example: '0.5'
        top10TotalHolders:
          type:
            - string
            - 'null'
          description: 前 10 持有者數量
          example: '10'
        top10TotalHoldings:
          type:
            - string
            - 'null'
          description: 前 10 持有者總持倉量
          example: '500000'
        top50HoldingsRatio:
          type:
            - string
            - 'null'
          description: 前 50 持有者佔總供應量比例
          example: '0.3'
        top50TotalHolders:
          type:
            - string
            - 'null'
          description: 前 50 持有者數量
          example: '50'
        top50TotalHoldings:
          type:
            - string
            - 'null'
          description: 前 50 持有者總持倉量
          example: '300000'
        totalSupply:
          type:
            - string
            - 'null'
          description: 代幣總供應量
          example: '1000000'
        totalTvlInSol:
          type:
            - string
            - 'null'
          description: 總鎖倉量（原生代幣計）
          example: '1000000.45'
        totalTvlInUsd:
          type:
            - string
            - 'null'
          description: 總鎖倉量（USD 計）
          example: '1000000.45'
  securitySchemes:
    bearer_auth:
      type: http
      scheme: bearer
      bearerFormat: JWT
    api_key_auth:
      type: apiKey
      in: header
      name: X-API-KEY

````