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

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 Supported blockchain chains

Available options:
sol,
eth,
bsc
tokenAddress
string
required

An address of a token

Query Parameters

walletAddresses
string
required

A list of wallet addresses in string separated by commas (,). Maximum 100 address addresses allowed

Response

200 - application/json

Get Holders Multi

amount
string
required
Example:

"1000000000000000000"

amountInUsd
string
required
Example:

"1000000000000000000"

percentage
string
required
Example:

"100"

walletAddress
string
required
Example:

"0x1234567890abcdef"