action stackexchange_get_tags_tags_related { label: "get_tags_tags_related" description: "Returns the tags that are most related to those in {tags}.\n \nIncluding multiple tags in {tags} is equivalent to asking for \"tags related to tag #1 and tag #2\" not \"tags related to tag #1 or tag #2\".\n \ncount on tag objects returned is the number of question with that tag that also share all those in {tags}.\n \n{tags} can contain up to 4 individual tags per request.\n \nThis method returns a list of tags.\n" provider: stackexchange method: GET path: "/tags/{tags}/related" 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 } }