This package has supporting files for a presentation on how to use the Google Auto-Complete tool for search suggestions to derive pertinent keywords from a simple search.
Google's autocomplete feature is a gold mine of keywords and marketing terms. These keywords and terms are suggested to their users via an API. By tapping into this API and sending it requests for auto-completion which are related to your chosen search term, you can find many related search phrases which will probably be used by those searching for content.
- source code is provided in google-suggest.js
- Shared Google Sheets Document
- Retrieves the search suggestions for a single term.
- Extends this query with alphabet components, making 25 requests (one for each letter of the alphabet) which get up to 10 results each for each alphabet character. There is a built in delay which causes this process to take about 30 seconds to complete.
These requests count against the total number of external API requests you are allowed per day (20K for most accounts).
MzveCKfxI8Vae53WtbuguSQIv2K89z2yK
function getSuggestions (seed) {
return GoogleSuggester.getSuggestions(seed);
}
function getAlphaSuggestions (seed) {
return GoogleSuggester.getAlphaSuggestions(seed);
}
Google Docs Slideshow This slideshow is intended to accompany a presentation on how to use the suggester library.