You can access all functions of our frontend via our API, which is available via the XML-RPC or JSON-RPC protocol and thus can be easily consumed with all programming languages., (*2)
There is also an OT&E test system, which you can access via ote.inwx.com. Here you will find the known web interface which is using a test database. On the OT&E system no actions will be charged. So you can test as much as you like there., (*3)
You can view a detailed description of the API functions in our documentation. You can find the online documentation by clicking here., (*4)
If you still experience any kind of problems don't hesitate to contact our support via email., (*5)
the recommended way is via composer:, (*6)
composer require inwx/domrobot
now you can use the client by importing the Domrobot class:, (*7)
use INWX\Domrobot;
<?php error_reporting(E_ALL); require 'vendor/autoload.php'; $username = 'your_username'; $password = 'your_password'; $domrobot = new \INWX\Domrobot(); $result = $domrobot->setLanguage('en') ->useOte() ->useJson() ->setDebug(true) ->login($username, $password); if ($result['code'] == 1000) { $object = 'domain'; $method = 'check'; $params = ['domain' => 'mydomain.com']; $result = $domrobot->call($object, $method, $params); } print_r($result); $domrobot->logout();
You can also have a look at the example.php file in the project for even more info., (*8)
MIT, (*9)