action stackexchange_get_tags_tags_faq { label: "get_tags_tags_faq" description: "Returns the frequently asked questions for the given set of tags in {tags}.\n \nFor a question to be returned, it must have all the tags in {tags} and be considered \"frequently asked\". The exact algorithm for determining whether a question is considered a FAQ is subject to change at any time.\n \n{tags} can contain up to 5 individual tags per request.\n \nThis method returns a list of questions.\n" provider: stackexchange method: GET path: "/tags/{tags}/faq" 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 } }