action mastodon_get_api_v1_instance_activity { label: "get_api_v1_instance_activity" description: "Instance activity over the last 3 months, binned weekly." provider: mastodon method: GET path: "/api/v1/instance/activity" encoding: json output: { type: "array" items: { type: "object" description: "Represents a weekly bucket of instance activity." properties: { logins: { type: "string" description: "User logins since the week began, String (cast from an integer)." } registrations: { type: "string" description: "User registrations since the week began, String (cast from an integer)." } statuses: { type: "string" description: "Statuses created since the week began, String (cast from an integer)." } week: { type: "string" description: "Midnight at the first day of the week. (UNIX Timestamp)." } } } } }