# TradingEconomics GDP Country List Scraper

**Use case:** 

Extract GDP data for all countries from TradingEconomics with value, previous value, highest, lowest, unit, reference period, and URLs.

## Input

```json
{
  "mode": "country-list",
  "countries": [
    "united-states"
  ],
  "categories": [],
  "indicator": "gdp",
  "directUrl": "https://tradingeconomics.com/country-list/gdp",
  "maxIndicators": 250,
  "proxy": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "BUYPROXIES94952"
    ]
  }
}
```

## Output

```json
{
  "country": {
    "label": "Country",
    "format": "text"
  },
  "indicator": {
    "label": "Indicator",
    "format": "text"
  },
  "value": {
    "label": "Value",
    "format": "number"
  },
  "previous": {
    "label": "Previous",
    "format": "number"
  },
  "highest": {
    "label": "Highest",
    "format": "number"
  },
  "lowest": {
    "label": "Lowest",
    "format": "number"
  },
  "unit": {
    "label": "Unit",
    "format": "text"
  },
  "reference": {
    "label": "Reference",
    "format": "text"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [TradingEconomics Scraper](https://apify.com/automation-lab/tradingeconomics-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/tradingeconomics-scraper) to learn more, explore other use cases, and run it yourself.