Overview


Introduction

The following documentation is about Jump.BG's API server and how to execute different functions.

Our API allows every reseller to automatically order domain, service (hosting, online radio, ssl certificate, etc...) and provide it to a third party.

Way of work

Along with the authentication, you have to send type, action and additional parameters (if such). The result will be returned in JSON format.

{info} Our API URL is https://api.jump.bg/api.php
You have to send the data as POST request.

If the request is successful you will get data in this format:

{
    "success": 1,
    "price": "20.40",
    "domain": "example.com",
    "id": "8822",
    "invoice_url": ".................."
}

If the request is NOT successful you will get data in this format:

{
    "error_msg": "Insufficient balance"
}