API 文档
文档风格与常见 SMM 面板保持一致。V2/V3 除服务列表返回字段外,其它行为一致。
如需获取 APIKEY,请前往 账号设置 → API 密钥 进行生成。
Connect With API
| HTTP Method | POST |
| API URL | |
| Response format | JSON |
| Content-Type | application/x-www-form-urlencoded(推荐)或 application/json |
API 密钥在账号设置 → API 密钥中生成。
同一账号在同一站点(主站/子站)两次生成间隔为 20 分钟。
密钥仅生成时完整显示一次,请立即保存。
同一账号在同一站点(主站/子站)两次生成间隔为 20 分钟。
密钥仅生成时完整显示一次,请立即保存。
Service list
action = services
| Parameters | Description |
|---|---|
| key | Your API key |
| action | services |
[
{
"service": "11",
"name": "Followers",
"type": "Default",
"category": "Instagram",
"rate": "8.5000",
"min": "10",
"max": "10000",
"refill": true,
"cancel": true
}
]curl 示例
Add order
action = add
| Parameters | Description |
|---|---|
| key | Your API key |
| action | add |
| service | Service ID(来自 services 返回) |
| link | Link to page |
| quantity | Needed quantity |
| runs | Runs to deliver(optional) |
| interval | Interval in minutes(optional) |
| comments | Custom comments(optional,支持 \n 多行) |
| username | optional |
{
"order": "b76VJizQKZ"
}curl 示例
Order status
action = status(single)
| Parameters | Description |
|---|---|
| key | Your API key |
| action | status |
| order | Order ID(仅支持随机单号,如 b76VJizQKZ) |
{
"charge": "0.2782",
"start_count": "3572",
"status": "Partial",
"remains": "157",
"currency": "CNY"
}curl 示例(单个)
action = status(multiple)
| Parameters | Description |
|---|---|
| key | Your API key |
| action | status |
| orders | Order IDs separated by comma(仅支持随机单号;up to 100 IDs) |
{
"b76VJizQKZ": {
"charge": "0.2782",
"start_count": "3572",
"status": "Partial",
"remains": "157",
"currency": "CNY"
},
"a1B2c3D4e5": {
"error": "Incorrect order ID"
}
}curl 示例(多个)
Create refill
action = refill
| Parameters | Description |
|---|---|
| key | Your API key |
| action | refill |
| order | Order ID(仅支持随机单号) |
说明:该接口会创建“补单工单”(管理员后台可见),由管理员在工单内决定是否向货源发起补单。
返回
返回
refill: 1 表示“已受理并创建工单”。
{
"refill": 1
}curl 示例
Get refill status
action = refill_status
| Parameters | Description |
|---|---|
| key | Your API key |
| action | refill_status |
| refill | Refill ID |
{
"status": "Completed"
}curl 示例
Create cancel
action = cancel
| Parameters | Description |
|---|---|
| key | Your API key |
| action | cancel |
| orders | Order IDs separated by comma(仅支持随机单号,up to 100 IDs) |
说明:该接口会创建“取消工单”(管理员后台可见),由管理员在工单内决定是否向货源发起取消。
返回
返回
cancel: 1 表示“已受理并创建工单”,并非直接代表货源已取消成功。
[
{
"order": "b76VJizQKZ",
"cancel": {
"error": "Incorrect order ID"
}
},
{
"order": "a1B2c3D4e5",
"cancel": 1
}
]curl 示例
User balance
action = balance
| Parameters | Description |
|---|---|
| key | Your API key |
| action | balance |
{
"balance": "100.8429",
"currency": "CNY"
}curl 示例