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

A chain name listed in supported networks

Available options:
sol,
base
tokenAddress
string
required

An address of a token

Example:

"6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN"

Response

200 - application/json
circulatingSupply
string
required

Circulating supply

Example:

"1000000"

marketCapInSol
string
required

MarketCap in SOL

Example:

"100000"

marketCapInUsd
string
required

MarketCap in USD

Example:

"100000"

top10TotalHoldings
string
required

Total holdings of top 10 holders

Example:

"100000"

top10HoldingsRatio
string
required

Ratio of holdings by top 10 holders

Example:

"0.1"

top100TotalHoldings
string
required

Total holdings of top 100 holders

Example:

"500000"

top100HoldingsRatio
string
required

Ratio of holdings by top 100 holders

Example:

"0.5"

holders
string
required

Total number of token holders

Example:

"1000"

priceInSol
string
required

Price in SOL

Example:

"0.00000261383847574915906643405542"

priceInUsd
string
required

Price in USD

Example:

"0.00000261383847574915906643405542"

tvlInSol
string
required

TVL in SOL

Example:

"0.00000261383847574915906643405542"

tvlInUsd
string
required

TVL in USD

Example:

"0.00000261383847574915906643405542"