action stackexchange_get_tags_synonyms { label: "get_tags_synonyms" description: "Returns all tag synonyms found a site.\n \nWhen searching for synonyms of specific tags, it is better to use /tags/{tags}/synonyms over this method.\n \nThe sorts accepted by this method operate on the follow fields of the tag_synonym object:\n - creation - creation_date\n - applied - applied_count\n - activity - last_applied_date\n creation is the default sort.\n \n It is possible to create moderately complex queries using sort, min, max, fromdate, and todate.\n\n \nThis method returns a list of tag_synonyms.\n" provider: stackexchange method: GET path: "/tags/synonyms" 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: ["creation", "applied", "activity"] } todate: { type: "integer" } } required: ["site"] additionalProperties: false } output: { type: "object" additionalProperties: true } }