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

实惠、现代的 SMM 面板。批发价,直连上游供应商。

产品

  • 服务
  • 价格
  • 推荐计划
  • 为何选择 NotPanel
  • 关于
  • 开发者
  • 博客
  • 常见问题

法律

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

关注我们

  • 联系我们
  • support@notpanel.com

© 2026 NotPanel 版权所有。

API 文档
+
API 文档

简介

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

目录

  • 列出服务

订单

  • 下单
  • 订单状态
  • 补单

账户

  • 余额

Webhook

  • 管理 webhook

参考

  • 更新日志
  • SDK 与库

需要帮助?

support@notpanel.com →

列出服务

返回目录中每个有效服务,费率会针对调用方账户定制。响应按用户缓存 5 分钟,因此高频轮询是安全的。

POSThttps://notpanel.com/api/v2action=services
需要 API key受速率限制(按 key + 按层级 + 按 IP)请求体: application/x-www-form-urlencoded

参数

名称类型描述
key必需string你的 API key。每个请求都必填。
action必需string必须是字面字符串 “services”。

请求示例

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

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

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

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

$response = file_get_contents('https://notpanel.com/api/v2', 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));

响应示例

[
  {
    "service": "1",
    "name": "Instagram Followers — Real",
    "type": "Default",
    "rate": "0.50",
    "min": "100",
    "max": "100000",
    "category": "Instagram Followers",
    "refill": true,
    "cancel": true,
    "dripfeed": true
  },
  {
    "service": "2",
    "name": "TikTok Views — High Retention",
    "type": "Default",
    "rate": "0.05",
    "min": "1000",
    "max": "10000000",
    "category": "TikTok Views",
    "refill": false,
    "cancel": true,
    "dripfeed": false
  }
]

常见错误

状态响应体原因
400{"error":"Invalid API key"}key 缺失或无法识别。
403{"error":"Account suspended"}账户未处于有效状态。

字段参考

  • service —— 稳定的数字 ID。下单时使用它。
  • type —— 服务类型:“Default”、“Custom Comments”、“Mentions”、“Package”、“Subscriptions”、“Poll Votes”。它会影响 action=add 需要哪些额外参数。
  • rate —— 每 1,000 单位的美元价格,格式化为字符串。已包含任何按用户已应用的折扣——所见即所付。
  • min、max —— 订单数量的上下界,含端点。
  • refill —— 此服务的已完成订单是否支持 action=refill。
  • cancel —— 供应商目录是否将此服务标记为可取消。仅供参考——此 API 没有取消操作。
  • dripfeed —— 该服务是否接受用于分批交付的可选 runs / interval 参数。