Token Holders (GET)

Token Holders: Credit Usage 20

This API is used to get all the holders and related data of a specific token

URL

Header: X-API-KEY

(Please do not disclose your API Key to anyone. If you are at risk of losing it, please refresh it.)

Parameters

{chain} solana / bsc Required
{token} Token address, query holder data for this token Required
{account} Address filter, only view the holdings of this address (maker)

Notes

  1. X-API-KEY can be obtained in your "Dashboard", go to check: Dashboard

  2. In the paging type interface, use the next field in the return value as the query parameter for the next page (if next == null, it means that paging has ended)

Results

{
	"err": false,
	"res": [
		{
			"account": "AC5RDfQFmDS1deWZos921JfqscXdByf8BKHs5ACWjtW2",
			"totalQuantity": 124198002.25994669,
			"freeQuantity": 124198002.25994669,
			"holdingRatio": 0.12674045970752223
		}
	],
	"docs": "https://dbotx.com/docs"
}

Response Parameters

  • account: Token holder wallet address

  • totalQuantity: Token holder balance

  • holdingRatio: Token holder holding ratio

Last updated