Bing Search Scraper avatar

Bing Search Scraper

Pricing

from $10.00 / 1,000 results

Go to Apify Store
Bing Search Scraper

Bing Search Scraper

Bing Search Scraper (Apify Actor) This Apify actor scrapes Bing in two modes: Gathers organic web search results — title, URL, domain, snippet, position, and optional date. Retrieves the "People also search for" keyword cluster at the bottom of the SERP.

Pricing

from $10.00 / 1,000 results

Rating

0.0

(0)

Developer

Jamshaid Arif

Jamshaid Arif

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

4 days ago

Last modified

Share

Bing Search Scraper (Apify Actor)

Apify actor that scrapes Bing in two modes:

Input fieldWhat it gets
scrapeSerps (default ON)Organic web search results — title, URL, domain, snippet, position, optional date
scrapeRelatedKeywords (default OFF)The "People also search for" keyword cluster at the bottom of the SERP

Every pushed item carries _type and _query:

// _type=serp_result
{
"_type": "serp_result",
"_query": "web scraping",
"position": 1,
"title": "Data Mining & Web Scraping Freelancers for Hire ...",
"url": "https://www.bing.com/ck/a?...",
"origin": "fiverr.com",
"domain": "fiverr.com",
"description": "Affordable data mining and web scraping ...",
"date": null
}
// _type=related_keyword
{
"_type": "related_keyword",
"_query": "web scraping",
"position": 1,
"keyword": "web scraping tools"
}

Market / language

The optional market input (e.g. en-US, de-DE, ja-JP) is injected as setmkt= and setlang= query parameters on every search URL. Leave blank to let Bing infer from the proxy IP.

Proxy

Bing tolerates datacenter IPs better than most sites but rate-limits aggressively for repeated queries. Default is Apify Proxy with the RESIDENTIAL group, which is a good balance for moderate-size runs.

Run locally with the Apify CLI

npm install -g apify-cli
apify login
cd bing-actor
apify run --purge

Deploy:

$apify push

Example input

{
"queries": [
"web scraping",
"best laptop 2026",
"machine learning courses"
],
"scrapeSerps": true,
"maxPages": 3,
"scrapeRelatedKeywords": true,
"market": "en-US",
"proxyConfiguration": {
"useApifyProxy": true,
"apifyProxyGroups": ["RESIDENTIAL"]
}
}