Baidu Related Searches Results API
Baidu Related Searches are search query suggestions made by Baidu related to the query provided by the user. SerpApi can scrape, make sense of them, and serve it under related_searches
. SerpApi provides query
, link
, and serpapi_link
for each individual query.
API Examples
JSON structure overview
{
"related_searches": [
{
"query": "String - Query of the related search",
"link": "String - Link to the Baidu search",
"serpapi_link": "String - Link to the SerpApi search"
},
...
],
}
Results for: Coffee
{
...
"related_searches": [
{
"query": "bread是什么意思",
"link": "https://www.baidu.com/s?wd=bread%E6%98%AF%E4%BB%80%E4%B9%88%E6%84%8F%E6%80%9D&rsf=100631101&rsp=0&f=1&rs_src=0&rsv_pq=bc0cbf80000c81b7&rsv_t=8c0dpCY7AslBRXL5dkv6DV2oPF0r7XQpqHO6kGqn9uKVkQTa1mWCnpQDs5I",
"serpapi_link": "https://serpapi.com/search.json?device=desktop&engine=baidu&f=8&q=bread%E6%98%AF%E4%BB%80%E4%B9%88%E6%84%8F%E6%80%9D"
},
{
"query": "Chicken",
"link": "https://www.baidu.com/s?wd=Chicken&rsf=100631101&rsp=1&f=1&rs_src=0&rsv_pq=bc0cbf80000c81b7&rsv_t=8c0dpCY7AslBRXL5dkv6DV2oPF0r7XQpqHO6kGqn9uKVkQTa1mWCnpQDs5I",
"serpapi_link": "https://serpapi.com/search.json?device=desktop&engine=baidu&f=8&q=Chicken"
},
{
"query": "Meat",
"link": "https://www.baidu.com/s?wd=Meat&rsf=100631101&rsp=2&f=1&rs_src=0&rsv_pq=bc0cbf80000c81b7&rsv_t=8c0dpCY7AslBRXL5dkv6DV2oPF0r7XQpqHO6kGqn9uKVkQTa1mWCnpQDs5I",
"serpapi_link": "https://serpapi.com/search.json?device=desktop&engine=baidu&f=8&q=Meat"
},
...
]
...
}