action stackexchange_get_me_top_question_tags { label: "get_me_top_question_tags" description: "Returns the user identified by access_token's top 30 tags by question score.\n \nThis method returns a list of top tag objects.\n" provider: stackexchange method: GET path: "/me/top-question-tags" encoding: json input: { type: "object" properties: { callback: { type: "string" } filter: { type: "string" } page: { type: "integer" } pagesize: { type: "integer" } site: { type: "string" } } required: ["site"] additionalProperties: false } output: { type: "object" additionalProperties: true } }