action stackexchange_get_tags_tags_wikis { label: "get_tags_tags_wikis" description: "Returns the wikis that go with the given set of tags in {tags}.\n \nBe aware that not all tags have wikis.\n \n{tags} can contain up to 20 individual tags per request.\n \nThis method returns a list of tag wikis.\n" provider: stackexchange method: GET path: "/tags/{tags}/wikis" encoding: json input: { type: "object" properties: { callback: { type: "string" } filter: { type: "string" } page: { type: "integer" } pagesize: { type: "integer" } site: { type: "string" } tags: { type: "string" } } required: ["site", "tags"] additionalProperties: false } output: { type: "object" additionalProperties: true } }