PHP code example of capi / sdk

1. Go to this page and download the library: Download capi/sdk library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

capi / sdk example snippets


// Check Domain via Domdetailer

$api_key = "XXXXXXXXXXXXXXXXXXXX"; // Your API Key from CAPI

$client = new CAPI\Rest\Client($api_key);
$domdetailer_result = $client->get('domdetailer/check-domain', ['domain' => 'google.com']);

print $domdetailer_result;