Bulk Website Traffic Analytics API
API endpoint → https://api.seoreviewtools.com/v2/bulk-website-traffic/
Price: 12 credits per request
Description: Collect Organic and Paid traffic statistics for any website (accepts up to 1000 domains / URLs per call).
Query string parameters
Name | Parameter | Description |
---|---|---|
URL | &url= |
The domain (add the domain name without parameters, schema, path and www) or URL you want to analyse. example: domain.com/product/ |
Language | &hl= |
The language → full list example: English |
Location | &location= |
The geographical location → full list example: United States |
API key | &key= | Your private API key |
Response elements
Name | Description |
---|---|
target | The domain |
organic | Monthly organic traffic |
paid | Monthly paid traffic |
Tool: Website traffic checker (API powered)
More information: discover more about this API
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
*/
function curlFunction ($toolRequestUrl, $curlData){
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $toolRequestUrl);
curl_setopt( $ch, CURLOPT_HTTPHEADER, array('Content-Type:application/json'));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST,false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $curlData);
$html = curl_exec($ch);
$curlInfo = curl_getinfo($ch);
return($html);
}
// Location
$location = "United States";
// Language
$language = "English";
// input Domains
$data = json_encode(['domains' => ['seoreviewtools.com', 'google.com']]);
// API key
$apiKey = "YOUR API KEY";
$toolRequestUrl = "https://api.seoreviewtools.com/v2/bulk-website-traffic/?location=".urlencode($location)."&hl=".urlencode($language)."&key=".$apiKey;
$dataJson = curlFunction($toolRequestUrl, $data);
header("Content-type: application/json");
echo ($dataJson );
?>
JSON response example
Ready to start testing the Bulk Website Traffic Analytics API endpoint? Get your API Key →