php client library for clear ip
composer require getiptrace/iptrace-php
Get ip info:
<?php
require_once __DIR__ . '/../vendor/autoload.php';
use IPtrace\Client;
$iptrace = new Client('API Key Here');
try {
var_dump($iptrace->IPInfoApi->GetAllDataByIP('IP Here'));
} catch (Exception $e) {
echo $e->getMessage();
}
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.