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.

Bulk Verify Buy It Now

Batch verify the status of the Buy It Now domain name to be purchased

Request URL
/api/buynow/check/bulk
Request Parameter
Field Parameter Type Required Description
domain sets ymlb String Yes Multiple domain names separated by [,]
Request Demo
{
    "appid": "xxxxxxxxxxxxxxxxxxxx",
    "gntime": 1694682851,
    "ymlb": "example2.com,example.com",
    "gntoken": "xxxxxxxxxxxxxxxxxxxxx"
}
Response Data
Field Parameter Type Description
return code code Integer 1:return successfully -1:return failed
return description msg String description of the return request operation
return data data Object return the requested operation result data
Return Data
Field Parameter Description
domain data[].ym example.com
ID data[].id 123642
status data[].zt 0=purchasable, 1=purchased or removed, 2=domain name sold by oneself, 3=other abnormal errors
Price data[].qian 1000.00
Response Demo
{
    "code": 1,
    "msg": "OK",
    "data": {
        "ok": [
            {
                "code": 1,
                "msg": "OK",
                "data": {
                    "qian": "100.00",
                    "ym": "12121hhhhqw.com",
                    "id": "8275210",
                    "zt": 0
                }
            }
        ],
        "err": [
            {
                "code": -1,
                "msg": "Sorry, the domain name has been removed or has been purchased",
                "data": {
                    "zt": 1,
                    "ym": "12312ss.com"
                }
            }
        ]
    }
}