Bing Search API
Basic Information
Interface Description: Retrieve real-time search data from Bing via API.
Interface URL: https://scraperapi.thordata.com/request
Request Method: POST
Request parameters
Headers:
Body:
json
string
No
This parameter defines the output format of the crawl results.
json=1
for JSON,
json=2
for both,
json=3
for HTML.
cc
string
No
This sets the country code (two-letter) for tailoring search results.For a list of possible values, see Country codes.
mkt
string
No
This defines the UI language for search results.For a list of possible market values, see Market codes.
location
string
No
This parameter defines the starting geographic location
for scraping. It should be used together with lat
(latitude) and lon
(longitude).
lat
string
No
latitude of the starting geographic location during scraping. Use it together with location and lat
(longitude).
lon
string
No
This parameter defines the {a1} longitude of the starting geographic location during scraping. Use it together with {a2} and {} (latitude).
first
string
No
This parameter controls the offset of the natural search results.It defaults to 1 (for example, if first=10, the 10th natural search result will be promoted to the first place).
count
string
No
The per page parameter controls the number of search results displayed per page (minimum: 1, maximum: 50) For more information, see Paging results.
adlt
string
No
This parameter specifies whether to filter adult content. Options are strict
(strict filtering) or off
(no filtering).Full list.
Response example
{
"spider_parameter": {
"engine": "bing",
"q": "pizza"
},
"total": {
"value": "About 2,240,000,000 results (0.30 seconds) "
},
"search_metadata": {
"created_at": "2025-06-21 14:08:06",
"id": "xxx",
"url": "https://www.bing.com/search?q=pizza"
},
"result":{}
spider_parameter
object
yes
Search engine parameters configuration
engine
string
yes
Search engine type
q
string
yes
Search keyword
total
object
yes
Total search results information
value
string
yes
Result count and time
search_metadata
object
yes
Metadata of the search
created_at
string
yes
Timestamp of the search
id
string
yes
Unique task ID
url
string
yes
Full URL of the search request
result
string
yes
Return Result
Last updated