# Bing Best Laptops Search Scraper

**Use case:** 

Scrape Bing search results for best laptops with title, URL, rank, and snippet. Export structured SERP data to JSON or CSV.

## Input

```json
{
  "maxItems": 50,
  "queries": [
    "best laptops 2024"
  ],
  "country": "us",
  "language": "en",
  "safeSearch": "moderate",
  "freshness": ""
}
```

## Output

```json
{
  "query": {
    "label": "Query",
    "format": "text"
  },
  "rank": {
    "label": "Rank",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "url": {
    "label": "Url",
    "format": "link"
  },
  "displayedUrl": {
    "label": "Displayed Url",
    "format": "link"
  },
  "snippet": {
    "label": "Snippet",
    "format": "text"
  },
  "date": {
    "label": "Date",
    "format": "date"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "date"
  }
}
```

## About this Actor

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