💲$HYPE Token Data

The HYPE Token Data endpoints provide access to information about token holders and ownership distribution for the HYPE ecosystem token. These endpoints can be used to query all known holders, as well as the specific wallets linked to the authenticated user.

Get All HYPE Token Holders

/api/external/hype/holders

Returns a complete list of all HYPE token holders. For each holder you can see their wallet address, whether they have claimed their tokens, how many tokens they own, and what percentage of the total supply that amount represents.

The endpoint can return up to 500 results per request. Lower limits usually result in faster response times.

Also found on the Leaderboards subpage here.

chevron-rightQuery Parametershashtag
Parameter
Type
Description

offset

number

Number of results to skip before starting the list.

limit

number

Maximum number of holder records to return.

order

string

Sort direction. Allowed values: asc, desc.

orderBy

string

Field to order by. Allowed values: balance, percentage, address, updatedAt.

Request Examples

curl --request GET \
  --url 'https://ht-api.coinmarketman.com/api/hype/holders?limit=50&orderBy=balance&order=desc' \
  --header 'Authorization: Bearer YOUR_API_TOKEN'

Response

200 Success: Returns all HYPE token holder data.

chevron-rightResponse Examplehashtag

Last updated