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
{
...
"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
{
...
"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
{
...
"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
{
...
"search_information": {
"organic_results_state": "Including results for spelling fix",
"total_results": 62200000,
"time_taken_displayed": 0.67,
"query_displayed": "hans wagner"
},
...
}
Results for multiple spelling suggestions
Multiple spelling suggestions are returned as a string separated by newlines
{
...
"search_information": {
"query_displayed": "gggggreen",
"total_results": 111000,
"time_taken_displayed": 0.31,
"organic_results_state": "Showing results for exact spelling despite spelling suggestions",
"spelling_fix": "gg green\ng green\ngo green"
},
...
}