action stackexchange_get_tags_tags_info { label: "get_tags_tags_info" description: "Returns tag objects representing the tags in {tags} found on the site.\n \nThis method diverges from the standard naming patterns to avoid to conflicting with existing methods, due to the free form nature of tag names.\n \nThis method returns a list of tags.\n \nThe sorts accepted by this method operate on the follow fields of the tag object:\n - popular - count\n - activity - the creation_date of the last question asked with the tag\n - name - name\n popular is the default sort.\n \n It is possible to create moderately complex queries using sort, min, max, fromdate, and todate.\n" provider: stackexchange method: GET path: "/tags/{tags}/info" encoding: json input: { type: "object" properties: { callback: { type: "string" } filter: { type: "string" } fromdate: { type: "integer" } max: { type: "string" } min: { type: "string" } order: { type: "string" enum: ["desc", "asc"] } page: { type: "integer" } pagesize: { type: "integer" } site: { type: "string" } sort: { type: "string" enum: ["popular", "activity", "name"] } tags: { type: "string" } todate: { type: "integer" } } required: ["site", "tags"] additionalProperties: false } output: { type: "object" additionalProperties: true } }