domain.kwcount.seo

Credits: 1/entry returned
Returns the number of organic keywords for the given DOMAIN, HOST, URL, or PATH. The function can be modified with the history parameter to show historical amounts of organic keywords, which can be limited using the limit parameter. To obtain mobile data or keyword counts for a specific country, use the mobile and country parameters. Additionally, the date parameter can be used to get the keyword count for a specific date.

Result

The results include the number of counted keywords (value), the date for which this count applies (date), and the domain where the keywords were found. If historical values are requested, the results will contain a list of these parameters.

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
Limits the number of historical values returned. This parameter only takes effect when used in combination with the history parameter. If history is set to TRUE and limit is specified, only the number of historical values defined by limit will be returned. By default, the base limit is 100.
history
BOOLEAN
If set to TRUE, historical weekly keyword counts are returned. By default, this parameter is set to FALSE, meaning only current data is provided. If history is set to TRUE and the limit parameter is not used to restrict the number of results, the keyword count for the last 100 weeks will be displayed.
mobile
BOOLEAN
Defines whether mobile or desktop data should be returned. By default, this parameter is set to TRUE, meaning mobile data will be returned. If set to FALSE, only desktop data will be returned.
date
DATE
Defines a specific date for which the amount of organic keywords will be returned.
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.kwcount.seo";
$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.kwcount.seo'
post = {

}
response = requests.post(baseUrl, post)
data = response.text
curl https://api.sistrix.com/domain.kwcount.seo \
let baseUrl = 'https://api.sistrix.com/domain.kwcount.seo';
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
})