Keyword Suggestions API FAST
API endpoint → https://api.seoreviewtools.com/keyword-suggestions-fast/
Example API call → https://api.seoreviewtools.com/keyword-suggestions-fast/?keyword=marketing&google=us&key=YOUR-PRIVATE-API-KEY
Price: 1 credits per request
Description: Discover new keyword suggestions (get keyword suggestions quickly).
Query string parameters
Name | Parameter | Description |
---|---|---|
Keyword | &keyword= |
The keyword or phrase is used by the the algorithm to discover keyword suggestions example: seo tools |
Country code | &google= |
The country code is used to extract the keyword suggestions from the country specific Google search engine (view the list of available country codes) example: us |
API key | &key= | Your private API key |
Response elements
Name | Description |
---|---|
Keyword | Keyword suggestion |
Keyword type | Values: Primary (keyword suggestion) or Secondary (keyword suggestion) |
Keyword source | Google (Google autocomplete in search) |
Keyword base | The input keyword |
Keyword matches | The number of times a keyword suggestion was detected |
Country codes
Country code | Country |
---|---|
us | United States |
uk | United Kingdom |
ca | Canada |
nl | Netherlands |
de | Germany |
fr | France |
es | Spain |
it | Italy |
au | Australia |
nz | New Zealand |
mx | Mexico |
ar | Argentina |
be | Belgium |
dk | Denmark |
no | Norwegian |
se | Sweden |
ru | Russia |
be | Belgium |
dk | Denmark |
no | Norwegian |
se | Sweden |
ru | Russia |
If your preferred country is not mentioned in this list, please visit the official Google documentation page for all the supported country codes: https://developers.google.com/custom-search/docs/xml_results_appendices#countryCodes
PHP code example
<?php
/*
API documentation for SEO Review Tools.
API info: https://www.seoreviewtools.com/seo-api/
API documentation: https://api.seoreviewtools.com/documentation/
LinkedIn: https://www.linkedin.com/company/seo-review-tools
*/
// API key
$apiKey = 'YOUR-API-KEY';
// Keyword
$keywordInput = "SEO Tool";
// Country code
$countryCode= "us";
// specific API url
$apiRequestUrl = 'https://api.seoreviewtools.com/keyword-suggestions-fast/?keyword='.urlencode($keyword).'&google='.$countryCode.'&key='.$apiKey;
// get data from API
$jsonReposnse = file_get_contents($apiRequestUrl);
// convert JSON to PHP array
$dataArray = json_decode($jsonReposnse, true);
// check if API call is success or failed
// (just some basic validation)
// API call fail
if ($dataArray['status'] !== 'ok'){
// return error message
echo 'Error message: '.$dataArray['error message'];
// API call success
} else {
// print data
print_r($dataArray);
}
?>
Python code example
# API documentation for SEO Review Tools.
# API info: https://www.seoreviewtools.com/seo-api/
# API documentation: https://api.seoreviewtools.com/documentation/
# LinkedIn: https://www.linkedin.com/company/seo-review-tools
import requests
# API key
apiKey = 'YOUR API KEY'
# Keyword
keyword = "SEO Tool"
# Country code
countryCode = "us"
# API request url
apiRequestUrl = 'https://api.seoreviewtools.com/keyword-suggestions-fast/?keyword='+keyword+'&google='+countryCode+'&key='+apiKey;
r = requests.request("GET", apiRequestUrl,)
print(r.text)
JSON response example
Ready to start testing the Keyword Suggestions API FAST endpoint? Get your API Key →