action covid19_api_get_latest_totals { label: "getLatestTotals" description: "Get latest data for whole world." provider: covid19_api method: GET path: "/totals" encoding: json input: { type: "object" properties: { format: { type: "string" enum: ["json", "xml"] } } additionalProperties: false } output: { type: "array" items: { type: "object" properties: { confirmed: { type: "integer" } critical: { type: "integer" } deaths: { type: "integer" } lastChange: { type: "string" format: "date-time" } lastUpdate: { type: "string" format: "date-time" } recovered: { type: "integer" } } } } }