Skip to main content

tags

This page describes the structure of the tags index (Elasticsearch), and also depicts a few examples of how to query it.

_id​

The _id field of this index is represented by the tag name in a base64 encoding.

Fields​

FieldDescription
countThe count field represents the number of NFTs with the current tag.
tagThis field represents the tag in an alphanumeric format.

Query examples​

Fetch NFTs count with a given tag​

curl --request GET \
--url ${ES_URL}/tags/_search \
--header 'Content-Type: application/json' \
--data '{
"query": {
"match": {
"tag":"sport"
}
}
}'