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 Backorder

Bulk backorder

Request URL
/api/backorder/bulk
Request Parameter
Field Parameter Type Required Description
domain list ym String Yes domain list, domains separated by【\n】,maximum of 100 domain names per submission
backorder channel td Integer Yes e.g: 1 represents channel 1
Request Demo
{
        "appid": "100xxxxxxxf7",
        "gntime": 1627912775,
        "td": "2",
        "ym": "cdsccd88.com\njiemeier.com\nzsfb.com\nqtyp.com",
        "gntoken": "A2277F3FD66591D559319D14BC4ED1E2"
}
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 result data of request operation
Return Data
Field Parameter Description
quantity of successfully backorder oksl
quantity of failed backorder errsl
successfully backorder domain ok
failed backorder domain err
Response Demo
//failure

{
	"code": -1,
	"msg": "Sorry, request verification error",
	"data": ""
}
//success
{
    "code": 1,
    "msg": "OK",
    "data": {
        "oksl": 1,
        "errsl": 1,
        "ok": [
            {
                "code": 1,
                "msg": "successfully backorder",
                "data": "3.00",
                "ym": "qtyp.com"
            }
        ],
        "err": [
            {
                "code": -2,
                "msg": "Sorry, you have already backordered this domain",
                "data": "",
                "ym": "shangpinyan.com"
            }
        ]
    }
}