notpanel
服务价格常见问题福利活动API
notpanel

粉丝、点赞和观看,覆盖所有平台。

目录同时包含我们直接运营的服务和经过审核的合作伙伴容量。可用性、时间、补单和滴灌支持均按服务显示;路由和合作伙伴身份保持保密。

产品

  • 服务
  • 价格
  • 价格指数
  • 推荐计划

资源

  • API
  • 博客
  • 常见问题
  • 状态

公司

  • 关于
  • 为何选择 NotPanel
  • 联系我们

法律

  • 服务条款
  • 隐私政策
  • 退款政策

语言

  • English
  • Español
  • Português
  • Русский
  • Türkçe
  • العربية
  • हिन्दी
  • Bahasa Indonesia
  • Français
  • 中文

© 2026 NotPanel 版权所有。

support@notpanel.com
notpanel
API 文档
+
API 文档

简介

  • 概览
  • 快速开始
  • 身份验证
  • 速率限制
  • 错误

目录

  • 列出服务
  • 高级目录
  • 服务类型

订单

  • 下单
  • 订单状态
  • 退款报价
  • 补单
  • 取消

账户

  • 账户状态
  • 余额

Webhook

  • 管理 webhook

参考

  • 更新日志
  • SDK 与库

需要帮助?

support@notpanel.com →

请求补充

符合条件的 completed 或 partial 订单在等待 24 小时后可创建补单请求。没有总尝试次数限制,但同一时间只能有一个处于 pending、processing 或审核中的补单。

POSThttps://notpanel.com/api/v3action=refill
需要 API key受速率限制(共享账户 + IP + action)请求体: application/x-www-form-urlencoded

参数

名称类型描述
key必需string你的 API key。
action必需string必须是字面字符串 “refill”。
orderstring单个订单 ID。使用 order 或 orders;若两者同时提供,以 orders 为准。
ordersstring (CSV)用于批量补充的、以逗号分隔的最多 100 个订单 ID。返回一个数组——每一行包含一个补充 ID 或该订单的错误信息。

请求示例

将 YOUR_API_KEY 替换为在你仪表盘 API 页面下生成的 key。

curl -X POST https://notpanel.com/api/v3 \
  -H "Content-Type: application/x-www-form-urlencoded" \
  -d "key=YOUR_API_KEY&action=refill&order=7001"
const res = await fetch("https://notpanel.com/api/v3", {
  method: "POST",
  headers: { "Content-Type": "application/x-www-form-urlencoded" },
  body: new URLSearchParams({
    key: "YOUR_API_KEY",
    action: "refill",
    order: "7001",
  }),
});

const data = await res.json();
console.log(data);
import requests

res = requests.post(
  "https://notpanel.com/api/v3",
  data={
    "key": "YOUR_API_KEY",
    "action": "refill",
    "order": "7001",
},
)
print(res.json())
<?php
$body = http_build_query([
    'key' => 'YOUR_API_KEY',
    'action' => 'refill',
    'order' => '7001',
]);

$response = file_get_contents('https://notpanel.com/api/v3', false, stream_context_create([
    'http' => [
        'method'  => 'POST',
        'header'  => "Content-Type: application/x-www-form-urlencoded\r\n",
        'content' => $body,
        'ignore_errors' => true,
    ],
]));

print_r(json_decode($response, true));

响应示例

{
  "refill": 8001
}

常见错误

状态响应体原因
400{"error":"Order not found"}订单 ID 不存在或不属于你的账户。
400{"error":"Refill only available for completed or partial orders"}订单不是 completed 或 partial。其他订单状态均不符合补单条件。
400{"error":"Service does not support refills"}底层服务的 refill=false。在提交补充请求前请查看服务目录。
400{"error":"A refill request is already pending for this order"}请等待上一个补充完成后再创建新的补充。
400{"error":"Refill is available 24 hours after the order is completed"}订单完成时间不足 24 小时。

多补单响应

当提供 orders 时,响应中的每一项要么是 {order, refill} 表示成功,要么是 {order, error} 表示单项失败。逐行失败不会导致整个批次失败。

[
  { "order": 7001, "refill": 8001 },
  { "order": 7002, "error": "Refill only available for completed or partial orders" }
]

补单状态

使用 action=refill_status 轮询一次补单的生命周期。单个 ID 通过 refill 传入;最多 100 个 ID 通过 refills(CSV)传入。

key=YOUR_API_KEY&action=refill_status&refill=8001

{
  "status": "Completed",
  "status_key": "completed"
}
key=YOUR_API_KEY&action=refill_status&refills=8001,8999

[
  { "refill": 8001, "status": "Completed", "status_key": "completed" },
  { "refill": 8999, "error": "Refill not found" }
]