action statsocial_get_applications_status { label: "Used to understand API usage" description: "Remaining window and remaining count details, also returns reports that have been generated by this account.\n" provider: statsocial method: GET path: "/applications/status/" encoding: json input: { type: "object" properties: { key: { type: "string" } } required: ["key"] additionalProperties: false } output: { properties: { data: { type: "object" properties: { remaining_count: { type: "integer" } reports: { type: "object" properties: { created: { type: "string" } name: { type: "string" } report_type: { type: "string" } status: { type: "string" } } } total_reports_count: { type: "integer" } total_reports_done: { type: "integer" } } } msg: { type: "string" } success: { type: "string" } } } }