# COVID Cases by Country Health Scraper

**Use case:** 

Scrape global health stats from disease.sh by country, sorted by total cases. Get cases, deaths, recovered and active counts as JSON.

## Input

```json
{
  "scope": "countries",
  "sort": "cases",
  "maxItems": 5
}
```

## Output

```json
{
  "scope": {
    "label": "Scope",
    "format": "text"
  },
  "updated": {
    "label": "Updated",
    "format": "text"
  },
  "imageUrl": {
    "label": "Image Url",
    "format": "link"
  },
  "country": {
    "label": "Country",
    "format": "text"
  },
  "iso2": {
    "label": "Iso2",
    "format": "text"
  },
  "iso3": {
    "label": "Iso3",
    "format": "text"
  },
  "continent": {
    "label": "Continent",
    "format": "text"
  },
  "latitude": {
    "label": "Latitude",
    "format": "number"
  },
  "longitude": {
    "label": "Longitude",
    "format": "number"
  },
  "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"
  }
}
```

## About this Actor

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