Yahoo! Related Searches API
Yahoo searches that may be related to other search terms are presented with "also try" search section. They can be seen on the top and the bottom of the page.
The API endpoint is https://serpapi.com/search?engine=yahoo
Head to the playground for a live and interactive demo.
API Examples
Results for: Coffee
{
...
"related_searches": {
"top": [
{
"query": "yeti coffee travel mug",
"link": "https://search.yahoo.com/search;_ylt=AwrE19AgYANe98YArLZXNyoA;_ylu=X3oDMTBzamNxcGJpBGNvbG8DYmYxBHBvcwMxBHZ0aWQDBHNlYwNyZWw-?p=yeti+coffee+travel+mug&ei=UTF-8&fr2=rs-top",
"serpapi_link": "https://serpapi.com/search.json?device=desktop&engine=yahoo&fr2=rs-top&p=yeti+coffee+travel+mug"
},
{
"query": "coffee makers",
"link": "https://search.yahoo.com/search;_ylt=AwrE19AgYANe98YArbZXNyoA;_ylu=X3oDMTBzamNxcGJpBGNvbG8DYmYxBHBvcwMxBHZ0aWQDBHNlYwNyZWw-?p=coffee+makers&ei=UTF-8&fr2=rs-top",
"serpapi_link": "https://serpapi.com/search.json?device=desktop&engine=yahoo&fr2=rs-top&p=coffee+makers"
},
{
"query": "coffee mugs",
"link": "https://search.yahoo.com/search;_ylt=AwrE19AgYANe98YArrZXNyoA;_ylu=X3oDMTBzamNxcGJpBGNvbG8DYmYxBHBvcwMxBHZ0aWQDBHNlYwNyZWw-?p=coffee+mugs&ei=UTF-8&fr2=rs-top",
"serpapi_link": "https://serpapi.com/search.json?device=desktop&engine=yahoo&fr2=rs-top&p=coffee+mugs"
}
],
"bottom": [
{
"query": "yeti coffee travel mug",
"link": "https://search.yahoo.com/search;_ylt=AwrE19AgYANe98YA.7ZXNyoA;_ylu=X3oDMTEwNzJpNmJwBGNvbG8DYmYxBHBvcwMxBHZ0aWQDBHNlYwNyZWwtYm90?p=yeti+coffee+travel+mug&ei=UTF-8&fr2=rs-bottom%2Cp%3As%2Cv%3Aw%2Cm%3Aat-s",
"serpapi_link": "https://serpapi.com/search.json?device=desktop&engine=yahoo&fr2=rs-bottom%2Cp%3As%2Cv%3Aw%2Cm%3Aat-s&p=yeti+coffee+travel+mug"
},
{
"query": "coffee brands",
"link": "https://search.yahoo.com/search;_ylt=AwrE19AgYANe98YA_7ZXNyoA;_ylu=X3oDMTEwcDRtMDB2BGNvbG8DYmYxBHBvcwM1BHZ0aWQDBHNlYwNyZWwtYm90?p=coffee+brands&ei=UTF-8&fr2=rs-bottom%2Cp%3As%2Cv%3Aw%2Cm%3Aat-s",
"serpapi_link": "https://serpapi.com/search.json?device=desktop&engine=yahoo&fr2=rs-bottom%2Cp%3As%2Cv%3Aw%2Cm%3Aat-s&p=coffee+brands"
},
{
"query": "coffee makers",
"link": "https://search.yahoo.com/search;_ylt=AwrE19AgYANe98YA_LZXNyoA;_ylu=X3oDMTEwZHBxMGxyBGNvbG8DYmYxBHBvcwMyBHZ0aWQDBHNlYwNyZWwtYm90?p=coffee+makers&ei=UTF-8&fr2=rs-bottom%2Cp%3As%2Cv%3Aw%2Cm%3Aat-s",
"serpapi_link": "https://serpapi.com/search.json?device=desktop&engine=yahoo&fr2=rs-bottom%2Cp%3As%2Cv%3Aw%2Cm%3Aat-s&p=coffee+makers"
},
...
]
},
...
}
JSON structure overview
{
...
"related_searches": [
{
"top": [
{
"query": "String - Query of the related search",
"link": "String - Link to the Yahoo! search",
"serpapi_link": "String - Link to the search results in JSON by SerpApi"
},
...
],
"bottom": [
{
"query": "String - Query of the related search",
"link": "String - Link to the Yahoo! search",
"serpapi_link": "String - Link to the search results in JSON by SerpApi"
},
...
],
"right": [
{
"query": "String - Query of the related search",
"link": "String - Link to the Yahoo! search",
"serpapi_link": "String - Link to the search results in JSON by SerpApi"
},
...
]
},
],
...
}