Search for tags matching a query
Parameters
Output
Encoding
application/jsoncursor
string
Optional
Cursor for next page
hasMore
boolean
Required
Whether more results are available
tags
array
Required
Search results
total
integer
Optional
Total count of matching tags
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [],
"output": {
"schema": {
"type": "object",
"required": [
"tags",
"hasMore"
],
"properties": {
"tags": {
"type": "array",
"items": {
"ref": "#tagSummary",
"type": "ref"
},
"description": "Search results"
},
"total": {
"type": "integer",
"minimum": 0,
"description": "Total count of matching tags"
},
"cursor": {
"type": "string",
"description": "Cursor for next page"
},
"hasMore": {
"type": "boolean",
"description": "Whether more results are available"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"q"
],
"properties": {
"q": {
"type": "string",
"maxLength": 100,
"minLength": 2,
"description": "Search query"
},
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1,
"description": "Maximum number of results to return"
},
"cursor": {
"type": "string",
"description": "Pagination cursor for next page"
},
"minQuality": {
"type": "integer",
"maximum": 100,
"minimum": 0,
"description": "Minimum quality score (0-100, scaled from 0-1)"
},
"includeSpam": {
"type": "boolean",
"default": false,
"description": "Include tags flagged as potential spam"
}
}
},
"description": "Search for tags matching a query"
}