API Services

With the API, you can engage in domain name registration and account management! Our API supports domain search, registration, renewal, dropcatch, and the use of your own software and servers, among other functions. You can easily configure domain name servers, select renewals, and create folders for your domains.

Account Information

For obtaining user information

Request URL
/api/user/info
Response Data
Field Parameter Type Description
return code code Integer returned status code
return description msg String description of the return request operation
return data data Object return response data
Return Data
Field Parameter Description
user ID uid user ID
user account email user account
user role role user role:‘user’ =user,‘agent’ =agent
Response Demo
{
    "code": 1,
    "msg": "OK",
    "data": {
        "uid": "1004",
        "email": "[email protected]",
        "role": "agent"
    }
}