GET
/
token
/
{chain}
/
{tokenAddress}
/
marketData
curl --request GET \
  --url https://api-dex.chainstream.io/token/{chain}/{tokenAddress}/marketData \
  --header 'Authorization: Bearer <token>'
{
  "circulatingSupply": "1000000",
  "marketCapInSol": "100000",
  "marketCapInUsd": "100000",
  "top10TotalHoldings": "100000",
  "top10HoldingsRatio": "0.1",
  "top100TotalHoldings": "500000",
  "top100HoldingsRatio": "0.5",
  "holders": "1000",
  "priceInSol": "0.00000261383847574915906643405542",
  "priceInUsd": "0.00000261383847574915906643405542",
  "tvlInSol": "0.00000261383847574915906643405542",
  "tvlInUsd": "0.00000261383847574915906643405542"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

chain
enum<string>
required

支持网络中列出的区块链名称

Available options:
sol,
base
tokenAddress
string
required

代币地址

Example:

"6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN"

Response

200 - application/json
circulatingSupply
string
required

流通供应量

Example:

"1000000"

marketCapInSol
string
required

流通市值(单位:SOL)

Example:

"100000"

marketCapInUsd
string
required

流通市值(单位:USD)

Example:

"100000"

top10TotalHoldings
string
required

前10名持有者总持有量

Example:

"100000"

top10HoldingsRatio
string
required

前10名持有者持有量占比

Example:

"0.1"

top100TotalHoldings
string
required

前100名持有者总持有量

Example:

"500000"

top100HoldingsRatio
string
required

前100名持有者持有量占比

Example:

"0.5"

holders
string
required

代币持有者总数

Example:

"1000"

priceInSol
string
required

代币价格(单位:SOL)

Example:

"0.00000261383847574915906643405542"

priceInUsd
string
required

代币价格(单位:USD)

Example:

"0.00000261383847574915906643405542"

tvlInSol
string
required

总流动性价值(单位:SOL)

Example:

"0.00000261383847574915906643405542"

tvlInUsd
string
required

总流动性价值(单位:USD)

Example:

"0.00000261383847574915906643405542"