Google Spell Check API

SerpApi extracts "Did you mean?" suggestions. As well than other spelling and grammar corrections.

API Examples

JSON structure overview

{
  ...
  "search_information": [
    {
      ...
      "spelling_fix": "String - Spelling fix from 'Did you mean?' or directly fixed search",
      "showing_results_for": "String - Directly fixed search",
      "spelling_fix_type": "String"
      ...
    },
  ],
  ...
}

Results for: Coffeee

Results for: Coffeee

JSON Example

{
  ...
  "search_information":
    {
      ...
      "organic_results_state": "Some results for exact spelling but showing fixed spelling",
      "query_displayed": "coffeee",
      "spelling_fix": "coffee",
      "showing_results_for": "coffee"
    },
    ...
  ...
}

Results for: serpapi

Results for: serpapi

JSON Example

{
  ...
  "search_information":
    {
      ...
      "organic_results_state": "Showing results for exact spelling despite spelling suggestion",
      "query_displayed": "serpapi",
      "spelling_fix": "serp api",
    },
    ...
  ...
}

Results for: first coffee here fast

Results for: first coffee here fast

JSON Example

{
  ...
  "search_information":
    {
      ...
      "organic_results_state": "Empty showing fixed spelling results",
      "query_displayed": ""first coffee here fast"",
      "showing_results_for": "first coffee here fast",
      "spelling_fix": "first coffee here fast",
      "spelling_fix_type": "without quotes"
    },
    ...
  ...
}

Results for: hans wagner

Results for: hans wagner

JSON Example

{
  ...
  "search_information": {
    "organic_results_state": "Including results for spelling fix",
    "total_results": 62200000,
    "time_taken_displayed": 0.67,
    "query_displayed": "hans wagner"
  },
  ...
}