# All Countries Country Data Scraper

**Use case:** 

Get country data for all countries with capital, region, population, area, languages, currencies and timezones for research.

## Input

```json
{
  "searchQuery": "",
  "maxItems": 50
}
```

## Output

```json
{
  "name": {
    "label": "Country",
    "format": "string"
  },
  "cca2": {
    "label": "ISO2",
    "format": "string"
  },
  "cca3": {
    "label": "ISO3",
    "format": "string"
  },
  "capital": {
    "label": "Capital",
    "format": "array"
  },
  "region": {
    "label": "Region",
    "format": "string"
  },
  "subregion": {
    "label": "Subregion",
    "format": "string"
  },
  "population": {
    "label": "Population",
    "format": "integer"
  },
  "area": {
    "label": "Area (km2)",
    "format": "integer"
  },
  "languages": {
    "label": "Languages",
    "format": "array"
  },
  "currencies": {
    "label": "Currencies",
    "format": "array"
  },
  "timezones": {
    "label": "Timezones",
    "format": "array"
  }
}
```

## About this Actor

This example demonstrates how to use [Countries Data Scraper - Population, Languages & Currencies](https://apify.com/scrapers_lat/rest-countries-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapers_lat/rest-countries-scraper) to learn more, explore other use cases, and run it yourself.