/tags
Returns all distinct NFT tags
Parameters
from
OPTIONAL(string)
- Number of items to skip for the result setsize
OPTIONAL(string)
- Number of items to retrievesearch
OPTIONAL(string)
- Search by collection identifier
Returns
tag
:(string)
- tag namecount
:(number)
- current number
Example
Request
curl -X 'GET' \
'https://elrond-api.public.blastapi.io/tags?search=music' \
-H 'accept: application/json'
Result
[
{
"tag": "music",
"count": 10681
},
{
"tag": "musicnft",
"count": 592
},
{
"tag": "musicnfts",
"count": 452
},
{
"tag": "elrondmusic",
"count": 448
},
{
"tag": " music",
"count": 315
},
{
"tag": "maiarmusic",
"count": 144
},
{
"tag": " bigupmusic",
"count": 48
}
]