# Apple Maps Business Scraper

**Use case:** 

Scrape Apple Maps business listings with names, categories, addresses, phones, websites, coordinates, and Apple Maps URLs.

## Input

```json
{
  "searchQuery": "coffee shops",
  "location": "Seattle, WA",
  "latitude": 40.7128,
  "longitude": -74.006,
  "maxResults": 100,
  "countryCode": "US",
  "language": "en-US",
  "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.