Bing Search Scraper avatar

Bing Search Scraper

Pricing

Pay per usage

Go to Apify Store
Bing Search Scraper

Bing Search Scraper

Scrapes organic search results from Bing for any query. Extracts title, link, displayed URL, snippet, date, and position.

Pricing

Pay per usage

Rating

0.0

(0)

Developer

codingfrontend

codingfrontend

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

4 days ago

Last modified

Share

An Apify actor that scrapes organic search results from Bing for any query.

Features

  • Extracts title, link, displayed URL, snippet, date, and position for every organic result.
  • Automatic pagination – keeps scrolling through Bing pages until maxItems is reached.
  • Supports market / region codes (en-US, en-GB, de-DE, …).
  • Proxy support via Apify Proxy or custom proxy configuration.

Input

FieldTypeDefaultDescription
querystringartificial intelligenceSearch term to look up on Bing.
maxItemsinteger50Maximum number of results to return.
marketstringen-USBing market code (language-country).
proxyConfigurationobjectApify ProxyProxy settings for the crawler.

Example input

{
"query": "artificial intelligence",
"maxItems": 50,
"market": "en-US",
"proxyConfiguration": {
"useApifyProxy": true
}
}

Output

Each result in the dataset contains:

FieldTypeDescription
positionintegerRank of the result across all pages.
titlestringTitle of the search result.
linkstringURL of the search result.
displayUrlstringURL as displayed by Bing in the SERP.
snippetstringDescription snippet shown in the SERP.
datestringDate shown next to the result (if any).
querystringThe original search query.
marketstringThe market code used for this search.

Running locally

npm install
npm start

Place your input in storage/key_value_stores/default/INPUT.json before running.