Find tags matching search criteria. Does not require auth.
Parameters
Output
Encoding
application/jsoncursor
string
Optional
A parameter to paginate results
tags
array
Required
A list of tags and their associated details
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"output": {
"schema": {
"type": "object",
"required": [
"tags"
],
"properties": {
"tags": {
"type": "array",
"items": {
"ref": "social.clippr.feed.defs#tagView",
"type": "ref"
},
"description": "A list of tags and their associated details"
},
"cursor": {
"type": "string",
"description": "A parameter to paginate results"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"q"
],
"properties": {
"q": {
"type": "string",
"description": "Search query string"
},
"actor": {
"type": "string",
"format": "at-identifier",
"description": "An actor to filter results to"
},
"limit": {
"type": "integer",
"default": 25,
"maximum": 100,
"minimum": 1,
"description": "How many tags to return in the query output"
},
"cursor": {
"type": "string",
"description": "A parameter to paginate results"
}
}
},
"description": "Find tags matching search criteria. Does not require auth."
}