Bing Search Scraper
Pricing
Pay per usage
Go to Apify Store
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
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
4 days ago
Last modified
Categories
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
maxItemsis reached. - Supports market / region codes (
en-US,en-GB,de-DE, …). - Proxy support via Apify Proxy or custom proxy configuration.
Input
| Field | Type | Default | Description |
|---|---|---|---|
query | string | artificial intelligence | Search term to look up on Bing. |
maxItems | integer | 50 | Maximum number of results to return. |
market | string | en-US | Bing market code (language-country). |
proxyConfiguration | object | Apify Proxy | Proxy settings for the crawler. |
Example input
{"query": "artificial intelligence","maxItems": 50,"market": "en-US","proxyConfiguration": {"useApifyProxy": true}}
Output
Each result in the dataset contains:
| Field | Type | Description |
|---|---|---|
position | integer | Rank of the result across all pages. |
title | string | Title of the search result. |
link | string | URL of the search result. |
displayUrl | string | URL as displayed by Bing in the SERP. |
snippet | string | Description snippet shown in the SERP. |
date | string | Date shown next to the result (if any). |
query | string | The original search query. |
market | string | The market code used for this search. |
Running locally
npm installnpm start
Place your input in storage/key_value_stores/default/INPUT.json before running.