# Numbeo city prices scraper for London and New York

**Use case:** 

Extract detailed Numbeo grocery, rent, restaurant, transport, and salary price lists for London and New York.

## Input

```json
{
  "mode": "city_prices",
  "cities": [
    "London",
    "New York"
  ],
  "maxCities": 20,
  "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.