Query token top holders by chain name and token address

Description

  • Method: HTTPS POST

  • Encoding:UTF-8

  • Path:https://api.blockin.ai/v2/quot/token/holder

  • Description:Query the list of top holders of a token

Request Header

Parameter
Required
Type
Description

Content-Type

Y

String

application/json

AccessKey

Y

String

1bdb01c947c54919b64d1fc6794atest

Request Parameters

Parameter
Required
Type
Description

chain_name

Y

String

Chain's name

token_address

Y

String

Token's address

Response

Public Response

Parameter
Required
Type
Description

success

Y

Boolean

Success Boolean

data

Y

Map<String, Object>

Response object

error_code

N

String

Error code

error_msg

N

String

Error message

Response Content

Parameter
Required
Type
Description

coin_infos

Y

Object

Token info

stat_coins

Y

Object

Token Statistics

holder_infos

Y

Object

Top 100 holders

Coin_infos Content

Parameter
Required
Type
Description

token_name

Y

String

Token's name

token_address

Y

String

Token's address

chain_name

Y

String

Chain's name

symbol

Y

String

Token's symbol

token_logo

Y

String

Token's logo

type

Y

String

Type: Coin, Token

twitter

Y

String

The twitter

facebook

Y

String

The facebook

reddit

Y

String

The reddit

telegram

Y

String

The telegram

website

Y

String

The website

explorers

Y

List

The explorers

soucre_code

Y

String

Soucre code

whitepaper

Y

String

Whitepaper

tags

N

List

Tags

update_at

Y

Long

Update time

Stat_coins Content

Parameter
Required
Type
Description

token_name

Y

String

Token's name

token_address

Y

String

Token's address

market_cap

Y

BigDecimal

Market cap

market_cap_usd

Y

BigDecimal

Market cap in USD

max_supply

N

BigDecimal

Max supply

total_supply

Y

BigDecimal

Total supply

circulating_supply

Y

BigDecimal

Circulating supply

fully_diluted_market_cap

Y

BigDecimal

Fully diluted market cap

fully_diluted_market_cap_usd

Y

BigDecimal

Fully diluted market cap in USD

volume_24h

Y

BigDecimal

24 hours volume

volume_24h_usd

Y

BigDecimal

24 hours volume in USD

update_at

Y

Long

Update time

Holder_infos Content

Parameter
Required
Type
Description

token_name

Y

String

Token's name

token_address

Y

String

Token's address

chain_name

Y

String

Chain's name

address

Y

String

User address

ens_name

N

String

ENS name

exchange_name

N

String

Exchange

quantity

Y

BigDecimal

Amount of tokens held

percentage

Y

BigDecimal

Proportion of tokens held

change_7d

Y

BigDecimal

7-day change rate

update_at

Y

Long

Update time

Request Sample

curl -H "Content-Type:application/json" -H "AccessKey:1bdb01c947c54919b64d1fc6794atest" "https://api.blockin.ai/v2/quot/token/holder" --data ' { "token_address": "0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984", "chain_name":"Ethereum" }'

Successful Response Sample

Last updated