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.

API Examples

JSON structure overview

{
  ...
  "related_searches": [
    {
      "top": [
        {
          "query": "String - Query of the related search",
          "link":  "String - Link to the Yahoo! search"
        },
        ...
      ],
      "bottom": [
        {
          "query": "String - Query of the related search",
          "link":  "String - Link to the Yahoo! search"
        },
        ...
      ]
    },
  ],
  ...
}

Results for: Coffee

Results for: Coffee Results for: Coffee

JSON Example

{
  ...
  "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"
      },
      {
        "query": "coffee makers",
        "link": "https://search.yahoo.com/search;_ylt=AwrE19AgYANe98YArbZXNyoA;_ylu=X3oDMTBzamNxcGJpBGNvbG8DYmYxBHBvcwMxBHZ0aWQDBHNlYwNyZWw-?p=coffee+makers&ei=UTF-8&fr2=rs-top"
      },
      {
        "query": "coffee mugs",
        "link": "https://search.yahoo.com/search;_ylt=AwrE19AgYANe98YArrZXNyoA;_ylu=X3oDMTBzamNxcGJpBGNvbG8DYmYxBHBvcwMxBHZ0aWQDBHNlYwNyZWw-?p=coffee+mugs&ei=UTF-8&fr2=rs-top"
      }
    ],
    "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"
      },
      {
        "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"
      },
      {
        "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"
      },
      ...
    ]
  },
  ...
}