Apply API

API is available for domain drop catch, account management, domain query, registration, renewal, deletion, using for apps and servers etc. You are able to easily set domain servers, choose renewal and create folder.

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
{
    "url": "http://api.gname.net/api/auction/bid",
    "method": "POST",
    "data": {
        "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"
    }
}