All URIs are relative to https://scrapebadger.com
| Method | HTTP request | Description |
|---|---|---|
| bing_bing_scraper_health_check | GET /v1/bing/health | Bing scraper health check |
| bing_bing_scraper_health_check_head | HEAD /v1/bing/health | Bing scraper health check |
| bing_image_search | GET /v1/bing/images | Image search |
| bing_list_supported_markets | GET /v1/bing/markets | List supported markets |
| bing_news_search | GET /v1/bing/news | News search |
| bing_search_suggestions | GET /v1/bing/autocomplete | Search suggestions |
| bing_video_search | GET /v1/bing/videos | Video search |
| bing_web_search | GET /v1/bing/search | Web search |
serde_json::Value bing_bing_scraper_health_check() Bing scraper health check
Check health of the Bing scraper service (accepts HEAD for UptimeRobot).
This endpoint does not need any parameter.
serde_json::Value
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
serde_json::Value bing_bing_scraper_health_check_head() Bing scraper health check
Check health of the Bing scraper service (accepts HEAD for UptimeRobot).
This endpoint does not need any parameter.
serde_json::Value
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
serde_json::Value bing_image_search(query, market, count, safe_search) Image search
Bing Images — thumbnail, full-size and source URL per result.
| Name | Type | Description | Required | Notes |
|---|---|---|---|---|
| query | String | Search keywords, e.g. 'golden retriever' | [required] | |
| market | Option<String> | Bing market code, e.g. 'en-US', 'en-GB', 'de-DE'. See /markets. | [default to en-US] | |
| count | Option<i32> | Results to return | [default to 35] | |
| safe_search | Option<String> | off | moderate | strict |
serde_json::Value
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
serde_json::Value bing_list_supported_markets() List supported markets
Supported Bing market codes. Free — costs no credits.
This endpoint does not need any parameter.
serde_json::Value
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
serde_json::Value bing_news_search(query, market, freshness) News search
Bing News — headline, source, published time and snippet per article.
| Name | Type | Description | Required | Notes |
|---|---|---|---|---|
| query | String | Search keywords, e.g. 'interest rates' | [required] | |
| market | Option<String> | Bing market code, e.g. 'en-US', 'en-GB', 'de-DE'. See /markets. | [default to en-US] | |
| freshness | Option<String> | day | week | month — restrict to recent articles |
serde_json::Value
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
serde_json::Value bing_search_suggestions(query, market) Search suggestions
Bing search-box query suggestions.
| Name | Type | Description | Required | Notes |
|---|---|---|---|---|
| query | String | Partial search term, e.g. 'coff' | [required] | |
| market | Option<String> | Bing market code, e.g. 'en-US', 'en-GB', 'de-DE'. See /markets. | [default to en-US] |
serde_json::Value
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
serde_json::Value bing_video_search(query, market, count, safe_search) Video search
Bing Videos — title, thumbnail, duration, publisher and source per result.
| Name | Type | Description | Required | Notes |
|---|---|---|---|---|
| query | String | Search keywords, e.g. 'espresso tutorial' | [required] | |
| market | Option<String> | Bing market code, e.g. 'en-US', 'en-GB', 'de-DE'. See /markets. | [default to en-US] | |
| count | Option<i32> | Results to return | [default to 35] | |
| safe_search | Option<String> | off | moderate | strict |
serde_json::Value
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
serde_json::Value bing_web_search(query, market, count, offset, safe_search) Web search
Bing web SERP — organic results, ads, related searches and total count.
| Name | Type | Description | Required | Notes |
|---|---|---|---|---|
| query | String | Search keywords, e.g. 'coffee machine' | [required] | |
| market | Option<String> | Bing market code, e.g. 'en-US', 'en-GB', 'de-DE'. See /markets. | [default to en-US] | |
| count | Option<i32> | Results per page (1-50) | [default to 10] | |
| offset | Option<i32> | Zero-based result offset for pagination | [default to 0] | |
| safe_search | Option<String> | off | moderate | strict (default moderate) |
serde_json::Value
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]