/nfts/:identifier:/accounts
Returns a list of addresses that hold balances for a specific Non-Fungible / Semi-Fungible / MetaESDT token
Parameters
identifierREQUIRED(string)- Filter by identifiers, comma-separatedfromOPTIONAL(string)- Number of items to skip for the result setsizeOPTIONAL(string)- Number of items to retrieve
Returns
address:(string)Account bech32 addressbalance:(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"
}
]