Bing Search Scraper
Bing Search Scraper
Scrape Bing organic search results at scale. Enter a search query and get back rank, title, URL, snippet, displayed URL, and publication date for every organic result — ready to export as JSON, CSV, or Excel.
What you get
Each result row contains:
| Field | Description |
|---|---|
rank |
Position in the SERP (1-indexed) |
title |
Page title as shown in Bing |
url |
Actual destination URL of the result |
displayUrl |
Breadcrumb-style URL shown by Bing |
snippet |
Text snippet shown under the title |
date |
Publication or freshness date, when available |
query |
The search query that produced this result |
scraped_at |
ISO 8601 timestamp when the result was scraped |
Input
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
query |
string | yes | web scraping tools |
The search query to run on Bing |
maxItems |
integer | yes | 10 |
Maximum number of results to return |
country |
string | no | US |
Two-letter country code (e.g. US, GB, DE) |
language |
string | no | en-US |
BCP 47 language tag (e.g. en-US, de-DE) |
safeSearch |
string | no | moderate |
Safe-search level: off, moderate, or strict |
freshness |
string | no | (all time) | Limit by age: Day, Week, or Month |
Example: fetch the top 10 results for a query
{
"query": "best project management tools 2024",
"maxItems": 10,
"country": "US",
"language": "en-US"
}
Sample output:
[
{
"rank": 1,
"title": "The 14 Best Project Management Tools in 2024 — G2",
"url": "https://www.g2.com/categories/project-management",
"displayUrl": "https://www.g2.com › categories",
"snippet": "Compare the best project management software in 2024. Real user reviews and ratings on G2.",
"date": "",
"query": "best project management tools 2024",
"scraped_at": "2024-11-15T10:32:45.000Z"
}
]
Use cases
- SEO research — track keyword rankings, discover competitor pages, benchmark SERP positions
- Competitor monitoring — alert when new competitors enter your target keyword sets
- Content gap analysis — find high-ranking pages for topics you haven't covered
- Market research — discover what content users find for industry queries
- SERP intelligence — map the competitive landscape for any search query
How it works
The actor uses Bing's standard search interface (bing.com/search) with proper browser headers to receive full organic results. It decodes Bing's tracking redirect URLs to deliver canonical destination URLs in the dataset. Pagination uses Bing's ?first=N parameter, fetching up to maxItems results across multiple pages as needed.
Performance and cost
- Results are scraped at approximately 10 results per second
- Memory usage: 512 MB
- Priced per result: pay only for data you receive
Reliability
Bing returns full SERP results reliably. For high-volume production use, start with a small test run (maxItems: 10) to verify results for your target query before scaling up.