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.

Break Into Auction

The user did not backorder the domain name, and obtained the permission of placing bid through break-into

Request URL
/api/auction/into
Request Parameter
Field Parameter Type Required Description
domain in auction ym String Yes domain in auction, e.g: gname.com
Request Demo
{
    "url": "http://api.gname.net/api/auction/into",
    "method": "POST",
    "data": {
        "appid": "10xxxxxxxb86f7",
        "gntime": 1627971400,
        "ym": "tesl.com",
        "gntoken": "55165FC4A6A48FB7535E5D96837C61A7"
    }
}
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
minimum bid of domain qian
frozen deposit dqian
Response Demo
//failure
{
    "code": -1,
    "msg": "sorry, you have participated the domain auction",
    "data": ""
}

//success
{
    "code": 1,
    "msg": "break into successfully",
    "data": {
        "qian": 19.8,
        "dqian": "3.96"
    }
}