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.

Place Bid

If you didn't backorder or break into the domain that in auction and place a bid on the domain that in auction. System will automatically break into and freeze the corresponding amount.

Request URL
/api/auction/bid
Request Parameter
Field Parameter Type Required Description
domain in auction ym String Yes your interested domain: gname.com
bid amount qian Float Yes bid amount: 100.01
Request Demo
{
        "appid": "10xxxxxxxxx6f7",
        "gntime": 1627971957,
        "qian": "19.80",
        "ym": "tesl.com",
        "gntoken": "7BDC3AE2E789C51C48BF6B44D9DD1DA2"
    }
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
Response Demo
//failure
{
    "code": -1,
    "msg": "sorry, bid failed, reason: minimum bid is $19.80",
    "data": ""
}
//success
{
    "code": 1,
    "msg": "bid successfully",
    "data": {
        "ym": "tesl.com"
    }
}