# Numbeo cost of living rankings scraper

**Use case:** 

Scrape Numbeo cost of living rankings for top global cities with price, rent, grocery, restaurant, and purchasing power indexes.

## Input

```json
{
  "mode": "rankings",
  "cities": [
    "New York",
    "London"
  ],
  "maxCities": 100,
  "currency": "USD",
  "language": "en",
  "requestDelay": 500
}
```

## Output

```json
{
  "rank": {
    "label": "Rank",
    "format": "number"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "country": {
    "label": "Country",
    "format": "text"
  },
  "costOfLivingIndex": {
    "label": "Cost of Living",
    "format": "number"
  },
  "rentIndex": {
    "label": "Rent Index",
    "format": "number"
  },
  "groceriesIndex": {
    "label": "Groceries",
    "format": "number"
  },
  "restaurantPriceIndex": {
    "label": "Restaurants",
    "format": "number"
  },
  "localPurchasingPowerIndex": {
    "label": "Purchasing Power",
    "format": "number"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "item": {
    "label": "Item",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  }
}
```

## About this Actor

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