Provides keyword suggestions based on Google’s related search queries shown at the end of search result pages for the ranking keywords of the given DOMAIN, HOST, PATH, or URL. For each keyword, the competition is provided. The number and position of results can be adjusted using the limit and page parameters. To adjust the country for the keyword suggestions, use the country parameter.
Result
The result contains a list of keywords derived from Google's related search queries. Each keyword entry includes the keyword itself (keyword), the domain it has the potential to rank for (domain), and the competition level for that keyword (competition).GET-Parameters
Parameters (Mandatory)
api_key
STRING
Your personal API key. This key is used to authenticate your requests. You can obtain it here.
address_object
STRING
Defines the domain, host, path, or URL to which the method is applied, depending on the key value provided.
Parameters (Optional)
country
STRING / countrycode
Defines the country for which the method will be executed. You can find a list of available country codes here. If no Country parameter is provided, the default country associated with the Toolbox account will be used.
limit
INTEGER
Specifies the number of results for each page. By default, this is set to 100. Adjust this value to control the number of results returned in each page.
page
INTEGER
Specifies which set of keyword ideas to return. This allows you to choose a specific page of results, with the number of results for each page determined by the limit parameter.
format
STRING
Specifies whether the response will be returned in XML or JSON format. By default, the result will be in XML format.
To be able to use the API documentation with real data, you have to create an API key in your account.
EXAMPLE
$baseUrl = "https://api.sistrix.com/domain.ideas";
$post = [
];
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $baseUrl);
curl_setopt($curl, CURLOPT_POSTFIELDS, $post);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
$response = curl_exec($curl);
curl_close($curl);
import requests
baseUrl = 'https://api.sistrix.com/domain.ideas'
post = {
}
response = requests.post(baseUrl, post)
data = response.text
curl https://api.sistrix.com/domain.ideas \
let baseUrl = 'https://api.sistrix.com/domain.ideas';
let form = new FormData();
fetch(baseUrl, {
method: 'POST',
body: form
}).then(function(response){
return response.text();
}).then(function(data){
//data contains the results of the request
})