Yandex Spell Check API

Yandex returns results with "Did you mean?" suggestions as well as other spelling and grammar corrections for some searches. SerpApi is able to scrape, extract, and make sense of this information.

API Examples

JSON structure overview

{
  ...
  "search_information": [
    {
      ...
      "spelling_fix": "String - Spelling fix for the organic result state 'Including results for spelling fix'",
      "typo": "String - Typo for the organic results state 'Showing results for fixed typo'",
      "showing_results_for": "String - Fixed Search Query",
      ...
    },
  ...
}

Results for: Coffeeea

Results for: Coffeeea

JSON Example

{
  ...
  "search_information":
    {
      "organic_results_state": "Including results for spelling fix",
      "query_displayed": "Coffeeea",
      "spelling_fix": "Coffee",
      "showing_results_for": "Coffee"
    },
    ...
}

Results for: bernie sunders

Results for: bernie sunders

JSON Example

{
  ...
  "search_information":
    {
      "organic_results_state": "Showing results for fixed typo",
      "query_displayed": "bernie sanders",
      "showing_results_for": "bernie sanders",
      "typo": "sunders"
    },
  ...
}

Results for: "intitle:bradescartoes"

Results for: "intitle:bradescartoes"

JSON Example

{
  ...
  "search_information": {
    "organic_results_state": "Showing results for query without quotes",
    "query_displayed": "\"intitle:bradescartoes\"",
    "showing_results_for": "intitle:bradescartoes"
  },
    ...
}