action stackexchange_get_info { label: "get_info" description: "Returns a collection of statistics about the site.\n \nData to facilitate per-site customization, discover related sites, and aggregate statistics is all returned by this method.\n \nThis data is cached very aggressively, by design. Query sparingly, ideally no more than once an hour.\n \nThis method returns an info object.\n" provider: stackexchange method: GET path: "/info" encoding: json input: { type: "object" properties: { site: { type: "string" } } required: ["site"] additionalProperties: false } output: { type: "object" additionalProperties: true } }