Credit balance
API endpoint → https://api.seoreviewtools.com/credits/
Example API call → https://api.seoreviewtools.com/credits/?key=YOUR-PRIVATE-API-KEY
Call the API the retrieve your API credit balance
Response elements
Name | Description |
---|---|
credit used | The number of credits that have been consumed |
credits available | The number of credits available before your subscription renews |
Monthly credits | The total amount of credits that come with your subscription |
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
*/
// API key
$apiKey = 'YOUR-API-KEY';
// specific API url
$apiRequestUrl = 'https://api.seoreviewtools.com/credits/?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);
}
?>
JSON response example
Ready to start testing the Credit balance endpoint? Get your API Key →