/tags
Summary
Gets the tags on all questions, along with their usage counts.Parameters
filter (optional)
- Required text in returned tags
- string
fromdate (optional)
- Unix timestamp of the minimum creation date on a returned item.
- unix epoch date, range [0, 253,402,300,799]
jsonp (optional)
- Just so we can serialize it for caching purposes
- string
max (optional)
- Maximum of the range to include in the response according to the current sort.
- an integer, a unix epoch date, or a string
min (optional)
- Minimum of the range to include in the response according to the current sort.
- an integer, a unix epoch date, or a string
order (optional)
- How a collection should be ordered
- one of desc (default), or asc
page (optional)
- The pagination offset for the current collection. Affected by the specified pagesize.
- 32-bit signed integer
pagesize (optional)
- The number of collection results to display during pagination. Should be between 0 and 100 inclusive.
- 32-bit signed integer
sort (optional)
- How a collection should be sorted
- one of popular (default), activity, or name
todate (optional)
- Unix timestamp of the maximum creation date on a returned item.
- unix epoch date, range [0, 253,402,300,799]
Returns
{
"total": {
"description": "total number of items in this sequence",
"values": "32-bit integer, range [0, 2,147,483,647]",
"optional": false
},
"page": {
"description": "page of the total collection returned",
"values": "32-bit integer, range [1, 2,147,483,647]",
"optional": false
},
"pagesize": {
"description": "size of each page returned from the collection",
"values": "32-bit integer, range [0, 100]",
"optional": false
},
"tags": [
{
"name": {
"description": "name of the tag",
"values": "string",
"optional": false,
"suggested_buffer_size": 25
},
"count": {
"description": "tag count, exact meaning depends on context",
"values": "32-bit signed integer",
"optional": false
},
"restricted_to": {
"description": "user types that can make use of this tag, lack of this field indicates it is useable by all",
"values": "one of , anonymous, unregistered, registered, or moderator",
"optional": true
},
"fulfills_required": {
"description": "indicates whether this tag is one of those that is required to be on a post",
"values": "boolean",
"optional": false
},
"user_id": {
"description": "user associated with this tag, depends on context",
"values": "32-bit signed integer",
"optional": true
}
}
]
}