# Apple Maps London Restaurant Export

**Use case:** 

Export London restaurant listings from Apple Maps with addresses, phone numbers, websites, coordinates, categories, and place URLs.

## Input

```json
{
  "searchQuery": "restaurants",
  "location": "London, UK",
  "latitude": 40.7128,
  "longitude": -74.006,
  "maxResults": 75,
  "countryCode": "GB",
  "language": "en-GB",
  "includeAddresses": true,
  "includePhysicalFeatures": false,
  "maxRequestRetries": 3
}
```

## Output

```json
{
  "name": {
    "label": "Name",
    "format": "text"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "address": {
    "label": "Address",
    "format": "text"
  },
  "phone": {
    "label": "Phone",
    "format": "text"
  },
  "website": {
    "label": "Website",
    "format": "link"
  },
  "latitude": {
    "label": "Latitude",
    "format": "number"
  },
  "longitude": {
    "label": "Longitude",
    "format": "number"
  },
  "appleMapsUrl": {
    "label": "Apple Maps URL",
    "format": "link"
  },
  "muid": {
    "label": "MUID",
    "format": "text"
  },
  "searchQuery": {
    "label": "Search query",
    "format": "text"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

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