private static String getBossSuggestionSearch(String q) throws IOException, SearchException {
SearchClient client = new SearchClient(API_KEY);
SpellingSuggestionRequest spellSerachRequest = new SpellingSuggestionRequest(q);
SpellingSuggestionResults result = client.spellingSuggestion(spellSerachRequest);
return result.getSuggestion();
}
}