/tags

Returns all distinct NFT tags

Parameters

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

  • sizeOPTIONAL (string) - Number of items to retrieve

  • search OPTIONAL (string) - Search by collection identifier

Returns

  • tag: (string) - tag name

  • count: (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
  }
]

Last updated