# Scrape Bing Search Results to JSON

**Use case:** 

One call per page of results: organic rows with position, title, snippet and real urls, plus ad rows when you want them. No proxies, no parsing.

## Input

```json
{
  "query": "project management software",
  "max_pages": 2,
  "include_ads": false,
  "safe_search": "Moderate",
  "device": "desktop"
}
```

## Output

```json
{
  "resultType": {
    "label": "Result type",
    "format": "string"
  },
  "page": {
    "label": "Page",
    "format": "integer"
  },
  "position": {
    "label": "Position",
    "format": "integer"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "snippet": {
    "label": "Snippet",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  },
  "displayedUrl": {
    "label": "Displayed URL",
    "format": "string"
  },
  "date": {
    "label": "Date",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Bing Search API | SERP, Rank Tracking and Ads Data](https://apify.com/johnvc/bing-search-api) with a specific input configuration. Visit the [Actor detail page](https://apify.com/johnvc/bing-search-api) to learn more, explore other use cases, and run it yourself.