# Compare countries on a World Bank indicator

**Use case:** 

GDP, population, inflation and every other World Bank indicator for any countries over any years, as one tidy table. No key.

## Input

```json
{
  "indicators": [
    "NY.GDP.MKTP.CD"
  ],
  "countries": [
    "IL",
    "US"
  ],
  "dateRange": "2015:2024",
  "skipEmptyValues": true,
  "maxRows": 50,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "country": {
    "label": "Country",
    "format": "text"
  },
  "countryCode": {
    "label": "ISO",
    "format": "text"
  },
  "indicator": {
    "label": "Indicator",
    "format": "text"
  },
  "indicatorCode": {
    "label": "Code",
    "format": "text"
  },
  "year": {
    "label": "Year",
    "format": "text"
  },
  "value": {
    "label": "Value",
    "format": "number"
  },
  "unit": {
    "label": "Unit",
    "format": "text"
  },
  "lastUpdated": {
    "label": "WB updated",
    "format": "text"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [World Bank Data Scraper: Economic Indicators](https://apify.com/glitchbound/worldbank-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/glitchbound/worldbank-scraper) to learn more, explore other use cases, and run it yourself.