/ntfs/{identifier}/accounts

Returns a list of addresses that hold balances for a specific Non-Fungible / Semi-Fungible / MetaESDT token

Parameters

  • identifier REQUIRED(string) - Filter by identifiers, comma-separated

  • fromOPTIONAL (string) - Number of items to skip for the result set

  • sizeOPTIONAL (string) - Number of items to retrieve

Returns

  • address: (string) Account bech32 address

  • balance: (number) Account current balance

Example

Request

curl -X 'GET' \
  'https://elrond-api.public.blastapi.io/nfts/GSPACEAPE-08bc2b-141d/accounts' \
  -H 'accept: application/json'

Result

[
  {
    "address": "erd1hrqzuj3tgcdvwrkzqa546umkzev2gtx5k8re3ckfrt4fyep5hrvqh5mrnq",
    "balance": "1"
  }
]

Last updated