action stackexchange_get_sites { label: "get_sites" description: "Returns all sites in the network.\n \nThis method allows for discovery of new sites, and changes to existing ones. Be aware that unlike normal API methods, this method should be fetched very infrequently, it is very unusual for these values to change more than once on any given day. It is suggested that you cache its return for at least one day, unless your app encounters evidence that it has changed (such as from the /info method).\n \nThe pagesize parameter for this method is unbounded, in acknowledgement that for many applications repeatedly fetching from /sites would complicate start-up tasks needlessly.\n \nThis method returns a list of sites.\n" provider: stackexchange method: GET path: "/sites" encoding: json input: { type: "object" properties: { callback: { type: "string" } filter: { type: "string" } page: { type: "integer" } pagesize: { type: "integer" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }