GET
/
v1
/
token
/
{chain}
/
{tokenAddress}
/
marketData
Token - Market Data
curl --request GET \
  --url https://api-dex.chainstream.io/v1/token/{chain}/{tokenAddress}/marketData \
  --header 'Authorization: Bearer <token>'
{
  "totalSupply": "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",
  "completionRatio": "0.1",
  "devTeamCount": 1,
  "devTeamAmount": "10000",
  "devTeamRatio": "0.5"
}

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,
bsc,
polygon,
arbitrum,
optimism,
avalanche,
ethereum,
zksync,
sui
tokenAddress
string
required

An address of a token

Example:

"6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN"

Response

200 - application/json
totalSupply
string
required

Total supply

Example:

"1000000"

marketCapInUsd
string
required

MarketCap in USD

Example:

"100000"

holders
number
required

Total number of token holders

Example:

1000

priceInUsd
string
required

Price in USD

Example:

"0.00000261383847574915906643405542"

tvlInUsd
string
required

TVL in USD

Example:

"0.00000261383847574915906643405542"

marketCapInSol
string

MarketCap in SOL

Example:

"100000"

top10TotalHoldings
string

Total holdings of top 10 holders

Example:

"100000"

top10HoldingsRatio
string

Ratio of holdings by top 10 holders

Example:

"0.1"

top100TotalHoldings
string

Total holdings of top 100 holders

Example:

"500000"

top100HoldingsRatio
string

Ratio of holdings by top 100 holders

Example:

"0.5"

priceInSol
string

Price in SOL

Example:

"0.00000261383847574915906643405542"

tvlInSol
string

TVL in SOL

Example:

"0.00000261383847574915906643405542"

completionRatio
string

Graduation completion progress

Example:

"0.1"

devTeamCount
number

Number of token dev team

Example:

1

devTeamAmount
string

Total amount held by dev team

Example:

"10000"

devTeamRatio
string

Ratio of tokens held by dev team

Example:

"0.5"