GET
/
tokens
/
{address_hash}
/
instances
/
{id}
/
holders
get token instance holders
curl --request GET \
  --url https://eth.blockscout.com/api/v2/tokens/{address_hash}/instances/{id}/holders
{
  "items": [
    {
      "address": {
        "hash": "0xEb533ee5687044E622C69c58B1B12329F56eD9ad",
        "implementation_name": "implementationName",
        "name": "contractName",
        "ens_domain_name": "domain.eth",
        "metadata": {
          "slug": "tag_slug",
          "name": "Tag name",
          "tagType": "name",
          "ordinal": 0,
          "meta": {}
        },
        "is_contract": true,
        "private_tags": [
          {
            "address_hash": "0xEb533ee5687044E622C69c58B1B12329F56eD9ad",
            "display_name": "name to show",
            "label": "label"
          }
        ],
        "watchlist_names": [
          {
            "display_name": "name to show",
            "label": "label"
          }
        ],
        "public_tags": [
          {
            "address_hash": "0xEb533ee5687044E622C69c58B1B12329F56eD9ad",
            "display_name": "name to show",
            "label": "label"
          }
        ],
        "is_verified": true
      },
      "value": "10000",
      "token_id": "10000"
    }
  ],
  "next_page_params": {
    "value": 790000000000000000000,
    "token_id": "953848",
    "items_count": 50
  }
}

Path Parameters

address_hash
string
required

Address hash

id
integer
required

integer id

Response

200
application/json

token

The response is of type object.