# Bing Image Search Results Scraper

**Use case:** 

Scrape Bing Images search results for a keyword with safe search, max result limits, and image metadata output.

## Input

```json
{
  "query": "modern office interior design",
  "maxResults": 100,
  "safeSearch": "Moderate",
  "imageSize": "Large",
  "imageType": "photo",
  "color": "",
  "license": ""
}
```

## Output

```json
{
  "thumbnailUrl": {
    "label": "Thumbnail",
    "format": "image"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "imageUrl": {
    "label": "Image URL",
    "format": "link"
  },
  "sourceUrl": {
    "label": "Source Page",
    "format": "link"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "mediaId": {
    "label": "Media ID",
    "format": "text"
  },
  "query": {
    "label": "Query",
    "format": "text"
  }
}
```

## About this Actor

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