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 分钟
密钥仅生成时完整显示一次,请立即保存。

Service list

action = services

ParametersDescription
keyYour API key
actionservices
[ { "service": "11", "name": "Followers", "type": "Default", "category": "Instagram", "rate": "8.5000", "min": "10", "max": "10000", "refill": true, "cancel": true } ]

curl 示例

Add order

action = add

ParametersDescription
keyYour API key
actionadd
serviceService ID(来自 services 返回)
linkLink to page
quantityNeeded quantity
runsRuns to deliver(optional)
intervalInterval in minutes(optional)
commentsCustom comments(optional,支持 \n 多行)
usernameoptional
{ "order": "b76VJizQKZ" }

curl 示例

Order status

action = status(single)

ParametersDescription
keyYour API key
actionstatus
orderOrder ID(仅支持随机单号,如 b76VJizQKZ
{ "charge": "0.2782", "start_count": "3572", "status": "Partial", "remains": "157", "currency": "CNY" }

curl 示例(单个)

action = status(multiple)

ParametersDescription
keyYour API key
actionstatus
ordersOrder 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

ParametersDescription
keyYour API key
actionrefill
orderOrder ID(仅支持随机单号)
说明:该接口会创建“补单工单”(管理员后台可见),由管理员在工单内决定是否向货源发起补单。
返回 refill: 1 表示“已受理并创建工单”。
{ "refill": 1 }

curl 示例

Get refill status

action = refill_status

ParametersDescription
keyYour API key
actionrefill_status
refillRefill ID
{ "status": "Completed" }

curl 示例

Create cancel

action = cancel

ParametersDescription
keyYour API key
actioncancel
ordersOrder 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

ParametersDescription
keyYour API key
actionbalance
{ "balance": "100.8429", "currency": "CNY" }

curl 示例