API Commands
[All Commands]

List_World_Hostings


List of active World Hostings.

Input:

string ssid token from Login

Output:

string status ok | error
array worldhostings list of active World Hostings
string domain World Hosting domain name
string locality server location code
string expire expiration date
int period renewal period in months
string ipv4 IP address of the server
string ipdomain server domain name - reverse lookup
string fullcountry server's country name
string country server's country code

Example:


<?php

$client 
= new SoapClient(null, [
    
'location' => 'https://regtons.com/soap/cmd.php',
    
'uri' => 'http://regtons.com/soap'
]);

$login_input = [
    
'login' => 'demo',
    
'password' => 'demouser'
];

$login_output $client->__call('Login', ['data' => $login_input]);

$input = [
    
'ssid' => $login_output['data']['ssid']
];

$output $client->__call('List_World_Hostings', ['data' => $input]);

print_r($input);
print_r($output);
$input: Array ( [ssid] => 51aca4e95c12821b56a9045babc943e7 ) $output: Array ( [status] => ok [worldhostings] => Array ( [0] => Array ( [domain] => domain.or.af [locality] => za1 [expire] => 2018-12-14 [period] => 12 [ipv4] => 160.119.253.61 [ipdomain] => 160.119.253.61 [fullcountry] => ZA (South Africa) [country] => za ) [1] => Array ( [domain] => domain2.or.af [locality] => cz1 [expire] => 2020-01-01 [period] => 1 [ipv4] => 185.82.212.103 [ipdomain] => 185.82.212.103 [fullcountry] => CZ (Czech Republic) [country] => cz ) ) )

API Manual - version from 2023-05-12 12:15:50