# Scrape Restaurant Menu Images for San Francisco Food App

**Use case:** 

Collect images from San Francisco restaurant menus. Gain insights with a bulk export of visual data to enhance food app offerings.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.yelp.com/search?find_desc=restaurants&find_loc=San+Francisco"
    }
  ],
  "crawlScope": "same-domain",
  "maxPagesToCrawl": 20,
  "includeImages": true,
  "includeVideo": false,
  "includeAudio": false,
  "includeBackgroundImages": false,
  "dedupeAcrossPages": true,
  "maxConcurrency": 8,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "pageUrl": {
    "label": "Page URL",
    "format": "string"
  },
  "mediaUrl": {
    "label": "Media URL",
    "format": "string"
  },
  "mediaType": {
    "label": "Media type",
    "format": "string"
  },
  "fileExtension": {
    "label": "File extension",
    "format": "string"
  },
  "alt": {
    "label": "Alt text",
    "format": "string"
  },
  "width": {
    "label": "Width",
    "format": "integer"
  },
  "height": {
    "label": "Height",
    "format": "integer"
  }
}
```

## About this Actor

This example demonstrates how to use [Image Scraper - Download All Images From Site](https://apify.com/logiover/website-image-media-extractor) with a specific input configuration. Visit the [Actor detail page](https://apify.com/logiover/website-image-media-extractor) to learn more, explore other use cases, and run it yourself.