Website Page Speed API
API endpoint → https://api.seoreviewtools.com/pagespeed/
Example API call → https://api.seoreviewtools.com/pagespeed/?url=https://www.searchenginejournal.com&key=YOUR-PRIVATE-API-KEY
Price: 1 credits per request
Description: detect the mobile and desktop page speed score for an URL (including the number of optimized elements and improvements).
Query string parameters
Name | Parameter | Description |
---|---|---|
URL | &url= |
The domain or URL you want to analyse (include schema and www) example: https://www.domain.com |
Device | &device= |
Optional: specify the device “Desktop” and “Mobile”, by default both are analysed and scored. |
API key | &key= | Your private API key |
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 URL
$inputUrl = 'https://www.searchenginejournal.com';
// API key
$apiKey = 'YOUR-API-KEY';
// specific API url
$apiRequestUrl = 'https://api.seoreviewtools.com/pagespeed/?url='.$inputUrl.'&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 URL
inputUrl = 'https://www.searchenginejournal.com'
# API URL
toolRequestUrl = 'https://api.seoreviewtools.com/pagespeed/?url='+inputUrl+'&key='+apiKey
r = requests.request("GET", toolRequestUrl,)
print(r.text)
JSON response example
Ready to start testing the Website Page Speed API endpoint? Get your API Key →