Bulk Bid#
Users can bid on multiple domains in auction at the same time.|Request URL#
|Request Method#
|Request Parameter#
| Field | Parameter | Type | Required | Description |
|---|
| APPID | appid | String | Yes | Application Client Id |
| Timestamp | gntime | String | Yes | The current UNIX timestamp |
| Signature | gntoken | String | Yes | Signature string. For details, please refer to the Signature Method page. |
| bid amount of domain | ymqian | String | Yes | domain in auction|bid amount, e.g: [gname.com|1000.00], domains separated by \n |
|Request Demo#
{
"appid": "10xxxxxxxxxxxx6f7",
"gntime": 1627972484,
"ymqian": "tesl.com|100.01
aaaa.com|111
bnzj.net|123",
"gntoken": "C8740AA42CD56A1B574E85B6F51EB3F5"
}
|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 | Type | Description |
|---|
| number of successes | oksl | Integer | - |
| number of failures | errsl | Integer | - |
| successful domain | ok | Array | - |
| failed domain | err | Array | - |
| Response Demo#
{
"code": 1,
"msg": "OK",
"data": {
"oksl": 1,
"errsl": 2,
"ok": [
{
"code": 1,
"msg": "successfully place bid",
"data": {
"ym": "tesl.com"
},
"ym": "tesl.com"
}
],
"err": [
{
"code": -1,
"msg": "sorry, the auction does not exist",
"data": "",
"ym": "aaaa.com"
},
{
"code": -1,
"msg": "sorry, bid failed. Reason: The auction status is "closed soon". This status does not allow bidding. Please keep attention and wait for the system to confirm whether you can place bid.",
"data": "",
"ym": "bnzj.net"
}
]
}
}
Modified at 2026-05-08 13:09:10