curl --request GET \
--url https://cloud.comfy.org/api/tags \
--header 'X-API-Key: <api-key>'{
"tags": [
{
"name": "<string>",
"count": 123
}
],
"total": 123,
"has_more": true
}Retrieves a list of all tags used across assets. Includes usage counts and filtering options.
curl --request GET \
--url https://cloud.comfy.org/api/tags \
--header 'X-API-Key: <api-key>'{
"tags": [
{
"name": "<string>",
"count": 123
}
],
"total": 123,
"has_more": true
}API key authentication. Generate an API key from your account settings at https://comfy.org/account. Pass the key in the X-API-Key header.
Filter tags by prefix
Maximum number of tags to return (1-1000)
1 <= x <= 1000Number of tags to skip for pagination
x >= 0Sort order for tags
count_desc, name_asc Include tags with zero usage count
Whether to include public/shared assets when counting tags
Was this page helpful?