Bulk Website Traffic Analytics API


Price: 12 credits per request


Description: Collect Organic and Paid traffic statistics for any website (accepts up to 1000 domains 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

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($chCURLOPT_URL$toolRequestUrl);
    
curl_setopt$chCURLOPT_HTTPHEADER, array('Content-Type:application/json'));
    
curl_setopt($chCURLOPT_RETURNTRANSFERtrue);
    
curl_setopt($chCURLOPT_POST1);
    
curl_setopt($chCURLOPT_SSL_VERIFYPEERfalse); 
    
curl_setopt($chCURLOPT_SSL_VERIFYHOST,false); 
    
curl_setopt($chCURLOPT_RETURNTRANSFERtrue);
    
curl_setopt($chCURLOPT_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/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







Trusted by →

clients