# Bing Shopping Scraper (`searchapi/bing-shopping-scraper`) Actor

Scrapes product listings from Bing Shopping. Extracts title, price, original price, discount, merchant, rating, review count, condition, shipping info, and more.

- **URL**: https://apify.com/searchapi/bing-shopping-scraper.md
- **Developed by:** [Search API](https://apify.com/searchapi) (community)
- **Categories:** E-commerce, Automation, Developer tools
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.99 / 1,000 search results

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Bing Shopping Scraper

### What is this tool?

Bing Shopping Scraper helps you collect shopping data from Bing (Microsoft's search engine). Search for any product and gather prices, merchants, ratings, reviews, and product details from multiple stores in one place.

### What can you use it for?

- Compare product prices across multiple stores
- Find the best deals and discounts
- Track product prices over time
- Research products before buying

### What data do you get?

Each result includes up to **49 fields**, organized into the following categories:

**Identity** (5 fields): Type, Result Type, Position, Page, Product ID (data-offerid)

**URLs** (9 fields): Search URL, Product URL, Link (alias of productUrl), URL (legacy alias), Display URL, Domain, Thumbnail URL, Seller URL, Favicon URL

**Text** (4 fields): Title, Description, Discount (raw text), Offer Count (alternatives)

**Pricing** (6 fields): Price (display), Price (numeric), Currency (symbol or ISO code), Original Price (display), Original Price (numeric), Discount (percent)

**Ratings** (4 fields): Seller Rating, Rating, Rating Count, Review Count

**Location** (1 fields): Country

**Categorization** (1 fields): Category

**Source** (2 fields): Seller / Merchant, Merchant (alias of seller)

**Search Context** (4 fields): Search Query, Query (legacy alias of searchQuery), Language, Search Metadata

**Other** (13 fields): Scraped At (ISO 8601), Free Shipping, Shipping Cost, In Stock, Availability, Condition (new/used/refurbished), Brand, Is Sponsored, Is Ad, Badges (e.g. Best Seller, New), Delivery Info, Payment Options, Warranty

### How to use it

#### Step 1: Enter your search

Type in your search term, like "wireless headphones".

#### Step 2: Set your preferences

Adjust the options below to customize your search.

#### Step 3: Run the tool

Click the run button and wait for your results. The tool will gather all the data and save it in a clean, organized format.

### Input options

| Option | What it means | Required | Default |
|--------|---------------|----------|---------|
| **Search Query** | Product search query. | Yes | wireless headphones |
| **Maximum Items** | Max products to scrape. | No | 50 |
| **Sort By** | Sort products by relevance, price (ascending/descending), or rating. Options: relevance (Best Match), price\_asc (Price: Low to High), price\_desc (Price: High to Low), rating (Best Rating). | No | relevance |
| **Minimum Price** | Filter products with price above this value (in USD). | No | — |
| **Maximum Price** | Filter products with price below this value (in USD). | No | — |

### Output

Your results come in a clean, organized table with **two views**:

#### Overview view

Shows the most important fields at a glance:

- **Thumbnail URL**
- **Title**
- **Product URL**
- **Price (display)**
- **Currency (symbol or ISO code)**
- **Original Price (display)**
- **Discount (raw text)**
- **Discount (percent)**
- **Seller / Merchant**
- **Rating**
- **Review Count**
- **Free Shipping**
- **Position**
- **Page**
- **Search Query**

#### Full details view

Shows all 49 fields in detail. See "What data do you get?" above for the complete list.

### Tips for best results

✅ **Be specific** with your search terms for more relevant results

✅ **Try different variations** of your search term to discover more results

✅ **Browse multiple pages** of results to get a wider variety

### Frequently asked questions

**Why use Bing?**
Bing is Microsoft's search engine and the second-largest search engine in the world. It often returns different results than Google, giving you a wider variety of websites and perspectives.

**How do I get the results?**
Your results are saved in your Apify dashboard. You can download them in various formats (JSON, CSV, Excel) or access them via the API.

**Can I run it on a schedule?**
Yes! Apify supports scheduled runs. You can set up the tool to run automatically at any interval (hourly, daily, weekly, etc.) from your dashboard.

**What if I get fewer results than I asked for?**
This can happen if the search engine doesn't have enough matching results for your search, or if some results are blocked. Try different keywords or relax your filters.

**Need more help?**
If you have questions or run into issues, our support team is ready to help. Just reach out through the Apify platform and we'll get back to you quickly.

# Actor input Schema

## `query` (type: `string`):

Product search query.

## `maxItems` (type: `integer`):

Maximum number of products to scrape.

## `sortBy` (type: `string`):

Sort products by relevance, price (ascending/descending), or rating.

## `minPrice` (type: `integer`):

Filter products with price above this value (in USD).

## `maxPrice` (type: `integer`):

Filter products with price below this value (in USD).

## `proxyConfiguration` (type: `object`):

Select proxies to be used by the scraper.

## Actor input object example

```json
{
  "query": "wireless headphones",
  "maxItems": 50,
  "sortBy": "relevance",
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "query": "wireless headphones",
    "maxItems": 50,
    "sortBy": "relevance",
    "proxyConfiguration": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("searchapi/bing-shopping-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "query": "wireless headphones",
    "maxItems": 50,
    "sortBy": "relevance",
    "proxyConfiguration": { "useApifyProxy": True },
}

# Run the Actor and wait for it to finish
run = client.actor("searchapi/bing-shopping-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "query": "wireless headphones",
  "maxItems": 50,
  "sortBy": "relevance",
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}' |
apify call searchapi/bing-shopping-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=searchapi/bing-shopping-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/a11PVWcp0ZDQ6aFda/builds/GU971wFN3l0Can9wH/openapi.json
