Get trending tags within a specified time window
Parameters
Output
application/jsontags
array
Required
List of trending tags
timeWindow
string
Required
Time window used for this response
day, week, monthTry 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",
"timeWindow"
],
"properties": {
"tags": {
"type": "array",
"items": {
"ref": "#tagSummary",
"type": "ref"
},
"description": "List of trending tags"
},
"timeWindow": {
"type": "string",
"description": "Time window used for this response",
"knownValues": [
"day",
"week",
"month"
]
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [],
"properties": {
"limit": {
"type": "integer",
"default": 20,
"maximum": 50,
"minimum": 1,
"description": "Maximum number of trending tags to return"
},
"timeWindow": {
"type": "string",
"default": "week",
"description": "Time window for trending calculation",
"knownValues": [
"day",
"week",
"month"
]
}
}
},
"description": "Get trending tags within a specified time window"
}