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.

Verify Buy It Now

When purchasing a Buy It Now domain name, you can use the interface to query the status of the Buy It Now domain name

Request URL
/api/buynow/check
Request Parameter
Field Parameter Type Required Description
domain ym String Yes
Response Data
Field Parameter Type Description
return code code Integer 1:return successfully -1:return failed
return description msg String return the description of request operation
return data data Object return the requested operation result data
Return Data
Field Parameter Description
domain data.ym example.com
price data.qian 1000.00
stutas data.zt 0=Can be purchased,1=Purchased or removed from list
Response Demo
//success
{
    "code": 1,
    "msg": "OK",
    "data": {
        "qian": "5983.02",
        "ym": "atkinsdesign.com",
        "zt": 0
    }
}
// error
{
    "code": -1,
    "msg": "Sorry, the domain name has been removed or has been purchased",
    "data": {
        "ym": "atkinsdesi1gn.com",
        "zt": 1
    }
}