Bing Search Scraper avatar

Bing Search Scraper

Try for free

No credit card required

View all Actors
Bing Search Scraper

Bing Search Scraper

tri_angle/bing-search-scraper
Try for free

No credit card required

Scrape search results from Bing.com. You can get the total number of results, organic results, paid results, people also ask, related queries and more.

Do you want to learn more about this Actor?

Get a demo

🔎 What is a Bing Search Scraper?

Our SERP scraper crawls Bing Search Results Pages (SERPs) and extracts data from those web pages in structured formats such as JSON, XML, CSV, or Excel. With this SERP Scraper API, you will be able to extract the following Bing data from each Bing page:

🌱 Organic results
🛍 Paid results
🙋‍♀️ People Also Ask
🔍 Additional attributes

💯 How many results can you scrape with Bing Search Scraper?

Bing Search Scraper can return up to 2000 results for one keyword. This is due to the limitations of Bing itself: although it shows as if it has millions of results for a given search query, Bing will not give you new results past page 200 (if we have 10 results per page).

If your use case doesn't require otherwise, we strongly recommend you to keep the setting or Results per Bing page to the max 50, so that you get 50 results per 1 page instead of crawling 5 pages, each with 10 results. The 5 by 10 is also possible but since you’re paying for request, it will be five times more pricey than it could’ve been.

While we regularly run Actor tests to keep the benchmarks in check, the results may also fluctuate without our knowing. The best way to know for sure for your particular use case is to do a test run yourself.

💸 How much will scraping Bing cost you?

When it comes to scraping, it can be challenging to estimate the resources needed to extract data as use cases may vary significantly. That's why the best course of action is to run a test scrape with a small sample of input data and limited output. You’ll get your price per scrape, which you’ll then multiply by the number of scrapes you intend to do.

Bing Search Scraper data input

The scraper gives you really good control over what kind of Bing Search results you'll get. You can specify the following settings:

  • Query phrases or raw Bing search URLs 🔍
  • Search market 🗺
  • Language of search 🇬🇧
  • Number of results per page 🔟

How to scrape Bing Search results by URL or keyword

There are two ways you can scrape Bing search pages: either by URL or by search term.

  1. Scraping by URL will get you data from Bing Search results page. You'll get Bing data for the query thats included in the URL. You can add as many URLs as you want.
  2. Scraping by search term will also get you data from Bing Search results page. You can also add as many search terms as you want.

Example input for scraping Bing Search search term

It is also easy to get Bing search data by search term. Just enter the search term and a number of Bing pages to scrape. With this option, you also can:

  • scrape by multiple keywords in parallel by adding more search terms and separating them by a new line
  • indicate how many results you want to see per each Bing page (10-50)
  • indicate the market of search (locale) and language

Here's is example of an input in JSON:

1{
2    "marketCode": "en-US",
3    "languageCode": "en",
4    "maxPagesPerQuery": 10,
5    "proxyConfig": {
6        "useApifyProxy": true,
7        "apifyProxyGroups": []
8    },
9    "queries": "apify\ncrawlee",
10    "resultsPerPage": 50,
11    "saveHtml": false,
12    "saveHtmlToKeyValueStore": true
13}

Scrape Bing Search results by URL

To input URLs instead, simply replace queries with full URLs:

"queries": "https://www.bing.com/search?q=apify&form=QBLH&sp=-1&ghc=1&lq=0&pq=apify&sc=11-5&qs=n&sk=&cvid=E54654768E75474GA4316BFD06FF2CA715&ghsh=0&ghacc=0&ghpl=",

Note that the Actor will extract only the query from the URL (in this example, "apify"), while all other settings (e.g., language) will be taken from your input.

⬆️ Bing Search data output

The scraper stores its result in the default dataset associated with the scraper run, from which you can export it to various formats, such as JSON, XML, CSV, or Excel.

Output example

For each Bing Search results page, the dataset will contain a single record.

Here is example in JSON:

1{
2	"searchQuery": {
3		"term": "apify",
4		"resultsPerPage": 10,
5		"page": 1,
6		"url": "https://www.bing.com/search?q=apify&mkt=en-US&setLang=en&count=10&first=1",
7		"marketCode": "en-US",
8		"languageCode": "en"
9	},
10	"html": null,
11	"htmlSnapshotUrl": null,
12	"resultsTotal": 30100,
13	"organicResults": [
14		{
15			"iconUrl": "https://th.bing.com/th?id=ODLS.f0918ea1-202b-4bbd-abfe-46cd7093840f&w=32&h=32&qlt=90&pcl=fffffa&o=6&cb=13&pid=1.2",
16			"displayedUrl": "https://apify.com",
17			"title": "Apify: Full-stack web scraping and data extraction platform",
18			"url": "https://apify.com/",
19			"description": "Cloud platform for web scraping, browser automation, and data for AI. Use 2,000+ ready-made tools, code templates, or order a custom solution.",
20			"emphasizedKeywords": [
21				"web"
22			],
23			"date": null,
24			"type": "organic",
25			"position": 1,
26			"productInfo": {},
27			"siteLinks": [
28				{
29					"url": "https://apify.com/pricing",
30					"title": "Plans & Pricing",
31					"description": "Plans and pricing"
32				},
33				// ... and more
34			]
35		},
36        // ... and many more
37	],
38	"paidResults": [],
39	"peopleAlsoAsk": [
40		{
41			"url": "https://docs.apify.com/platform",
42			"question": "What is apify and how does it work?",
43			"answer": "Apify is a cloud platform that helps you build reliable web scrapers, fast, and automate anything you can do manually in a web browser. Actors are serverless cloud programs running on the Apify platform that can easily crawl websites with millions of pages, but also perform arbitrary computing jobs such as sending emails or data transformations."
44		},
45        // ... and more
46	],
47	"relatedQueries": [
48		{
49			"title": "apify login",
50			"url": "https://www.bing.com/search?q=apify+login&FORM=QSRE1"
51		},
52        // ... and more
53	]
54}


You can download the results directly from the platform using a button or from the Get dataset items API endpoint:

<https://api.apify.com/v2/datasets/[DATASET_ID]/items?format=[FORMAT]>

where [DATASET_ID] is the ID of the dataset and [FORMAT]can be csv, html, xlsx, xml, rss or json.

❓FAQ

📚 Resources on how to use Bing SERP API to scrape Bing

How do I scrape millions of results from Bing?

Please note that, although Bing always shows that it has found millions of results, Bing will never display more than a few thousands results for a single search query 🤥 If your goal is to get as many results as possible, try creating many similar queries and combine different parameters and locations.

Web scraping is legal if you are extracting publicly available data, but you should respect boundaries such as personal data and intellectual property regulations. Rule of thumb is: you should only scrape personal data if you have a legitimate reason to do so, factoring in Bing's Terms of Use as well. If you're unsure whether your reason is legitimate, consult your lawyers. We also recommend that you read our blog post on the subject: is web scraping legal?

Bing SERP API has a lot to offer in terms of how extracted Bing data can be applied:

🔸 Use it for search engine optimization (SEO) and monitor how your website performs on Bing for certain queries over time.

🔹 Monitor how frequently a search term has been used on Bing, and how it compares with total search volume.

🔸 Analyze display ads for a given set of keywords.

🔹 Monitor your competition in both organic and paid results.

🔸 Build a URL list for certain keywords. This is useful if, for example, you need good relevant starting points when scraping web pages containing specific phrases.

🔹 Analyze Bing algorithm and identify its main trends

Can I use Bing Scraper with the API?

The Apify API gives you programmatic access to the Apify platform. The API is organized around RESTful HTTP endpoints that enable you to manage, schedule, and run Apify Actors. The API also lets you access any datasets, monitor actor performance, fetch results, create and update versions, and more.

To access the API using Node.js, use the apify-client NPM package. To access the API using Python, use the apify-client PyPi package.

Developer
Maintained by Apify
Actor metrics
  • 7 monthly users
  • 2 stars
  • 100.0% runs succeeded
  • Created in Sep 2024
  • Modified 1 day ago
Categories