# Global COVID-19 Statistics for All Countries

**Use case:** 

Get comprehensive COVID-19 data for every country. Includes cases, deaths, recoveries, and vaccination statistics.

## Input

```json
{
  "mode": "countries",
  "countries": [],
  "lastDays": 30,
  "proxy": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "mode": {
    "label": "Mode",
    "format": "string"
  },
  "country": {
    "label": "Country",
    "format": "string"
  },
  "state": {
    "label": "State",
    "format": "string"
  },
  "continent": {
    "label": "Continent",
    "format": "string"
  },
  "date": {
    "label": "Date",
    "format": "string"
  },
  "cases": {
    "label": "Cases",
    "format": "number"
  },
  "todayCases": {
    "label": "Today Cases",
    "format": "number"
  },
  "deaths": {
    "label": "Deaths",
    "format": "number"
  },
  "todayDeaths": {
    "label": "Today Deaths",
    "format": "number"
  },
  "recovered": {
    "label": "Recovered",
    "format": "number"
  },
  "active": {
    "label": "Active",
    "format": "number"
  },
  "critical": {
    "label": "Critical",
    "format": "number"
  },
  "tests": {
    "label": "Tests",
    "format": "number"
  },
  "population": {
    "label": "Population",
    "format": "number"
  },
  "casesPerMillion": {
    "label": "Cases/Million",
    "format": "number"
  },
  "deathsPerMillion": {
    "label": "Deaths/Million",
    "format": "number"
  },
  "testsPerMillion": {
    "label": "Tests/Million",
    "format": "number"
  },
  "vaccinated": {
    "label": "Vaccinated",
    "format": "number"
  },
  "updated": {
    "label": "Updated",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Global Health Stats Scraper - COVID, Vaccines & Epidemiology](https://apify.com/logiover/global-health-stats-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/logiover/global-health-stats-scraper) to learn more, explore other use cases, and run it yourself.