Website Traffic Analytics API (All sources)
API endpoint → https://api.seoreviewtools.com/website-traffic/
Example API call → https://api.seoreviewtools.com/website-traffic/?url=seoreviewtools.com&key=YOUR-API-KEY
Price: 4 credits per request
Description: Collect website traffic and competitor data for any website with > 5000 monthly visitors.
Query string parameters
Name | Parameter | Description |
---|---|---|
URL | &url= |
The domain you want to analyse (add the domain name without parameters, schema, path and www) example: domain.com |
API key | &key= | Your private API key |
Response elements
Name | Description |
---|---|
traffic > value | Total monthly traffic |
traffic > countries | Traffic by country |
sources | Traffic by source: organic, referral, direct, paid, social |
audience > visits | Average visits (based on the previous month) |
audience > time_on_site_avg | Average time on site (based on the previous month) |
audience > page_views_avg | Average page views (based on the previous month) |
similar_sites | An overview of the direct competitors in search |
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
*/
// input Domain
$inputDomain= 'searchengineland.com';
// API key
$apiKey = 'YOUR-API-KEY';
// specific API url
$apiRequestUrl = 'https://api.seoreviewtools.com/website-traffic/?url='.$inputDomain.'&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'
# input Domain
inputDomain= 'https://searchengineland.com'
# API URL
toolRequestUrl = 'https://api.seoreviewtools.com/website-traffic/?url='+inputDomain+'&key='+apiKey
r = requests.request("GET", toolRequestUrl,)
print(r.text)
JSON response example
Ready to start testing the Website Traffic Analytics API (All sources) endpoint? Get your API Key →
Trusted by →
