GET
/
token
/
v1
/
{chain}
/
{tokenAddress}
/
holders
/
multi
Token - Holders (Multi)
curl --request GET \
  --url https://api-dex.chainstream.io/token/v1/{chain}/{tokenAddress}/holders/multi \
  --header 'Authorization: Bearer <token>'
[
  {
    "walletAddress": "0x1234567890abcdef",
    "amount": "1000000000000000000",
    "amountInUsd": 1000000000000000000,
    "percentage": "100"
  }
]

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"

Query Parameters

walletAddresses
string
required

A list of wallet addresses in string separated by commas (,)

Example:

"MJKqp326RZCHnAAbew9MDdui3iCKWco7fsK9sVuZTX2,2RH6rUTPBJ9rUDPpuV9b8z1YL56k1tYU6Uk5ZoaEFFSK"

Response

200 - application/json

The response is of type object[].