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 Purchase Buy It Now

You can purchase domain names for sale in bulk through this interface

Request URL
/api/buynow/buy/bulk
Request Parameter
Field Parameter Type Required Description
domain price ymqian String Yes domain in list|price, e.g: [gname.com|1000.00], domains separated by [,]
Request Demo
{
    "appid": "1XXXXXXXXXX",
    "gntime": 1694682851,
    "ymqian": "example2.com|10000.00,example.com|12345.67",
    "gntoken": "XXXXXXXXXXXX"
}
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
number of successes data.oksl
number of failures data.errsl
successful domain data.ok
failed domain data.err
Response Demo
{
    "code": 1,
    "msg": "OK",
    "data": {
        "oksl": 1,
        "errsl": 1,
        "ok": [
            {
                "code": 1,
                "msg": "Purchase successful",
                "data": "",
                "ym": "grandviewmgmt.com"
            }
        ],
        "err": [
            {
                "code": -1,
                "msg": "Sorry, the purchase failed because the record does not exist.",
                "data": "",
                "ym": "12312ss.com"
            }
        ]
    }
}