We use cookies on this website to distinguish you from other users. We use this data to enhance your experience and for targeted advertising. By continuing to use this website you consent to our use of cookies. For more information, please see our Cookie Policy.


You can now try the API systems in a sandbox environment for free.Learn More

About Api

About Api

FPanel API protocols provide communication between the your system and 3rd party software. When you request API endpoints, you get specific response patterns. Our API systems support JSON and XML structures. If you make as request in JSON , you will also get as response in JSON .

System administrators have the authority to manage API systems as many ways. Administrators have the authority to modify an endpoint for security purposes, they can allow users registered in the system to access APIs or completely block them. After requests, you will get specific responses from defined endpoints.

To access these endpoints, you must first log on to the system with the credentials set by the system administrators. API systems access is provided with JWT (JSON Web Token). After logging in, you need to submit these JWT you receive in response in the header of your requests. For details, please visit the "API Authentication".


Who can use Fpanel api systems

Administrators: System administrators can reach every point with this api systems.

Clients/Resellers: Clients and Resellers only have API access rights defined for them.

Domain Users: Domain users can access the API with their defined rights.

JSON Request Format:
{
  "api": {
    "process": "...."
  }
}


XML Request Format:

<?xml version="1.0" encoding="UTF-8" ?>
    <api>
        <process>....</process>
    </api>

JSON Response Format:
{
    "result":{
        "status":1,
        "message":"Operation completed successful"
    }
}


process: This node changes for each transaction. You can see the values that this place will take in other examples.

We use cookies on this website to distinguish you from other users. We use this data to enhance your experience and for targeted advertising. By continuing to use this website you consent to our use of cookies. For more information, please see our Cookie Policy.