Skip to main content

Retrieve the holders of a token

POST 

https://minatokens.com/api/v1//info/holders

The holders endpoint retrieves the holders of a token.

Request

Bodyrequired

    addressstringrequired

    The Mina address for which to retrieve the holders

Responses

Successful retrieval of token holders.

Schema
    holders object[]required

    Array of token holders and their balances

  • Array [
  • addressstringrequired

    The address of the token holder

    balancenumberrequired

    The total token balance held by this address

    percentagenumberrequired

    The percentage of total token supply held by this address

    isZkappAccountbooleanrequired

    Whether this holder is a zkApp account

  • ]

Authorization: x-api-key

name: x-api-keytype: apiKeyin: headerdescription: API key for authorization. Get your API key at https://minatokens.com/api
curl -L 'https://minatokens.com/api/v1/info/holders' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'x-api-key: <x-api-key>' \
-d '{
"address": "string"
}'
Request Collapse all
Base URL
https://minatokens.com/api/v1
Auth
Body required
{
  "address": "string"
}
ResponseClear

Click the Send API Request button above and see the response here!