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 →

账户状态

返回账户通过消费获得的两项独立权益:终身 API 吞吐量进度和滚动 90 天折扣进度。此读取不会更改任何值。

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

参数

名称类型描述
key必需string你的 API key。
action必需string必须是字面字符串 “account_status”。

请求示例

将 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=account_status"
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: "account_status",
  }),
});

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

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

$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));

响应示例

{
  "currency": "USD",
  "lifetime_successful_spend": "550.00",
  "api_rate": {
    "tier": 4,
    "tier_minimum_spend": "500.00",
    "tier_requests_per_minute": 1200,
    "effective_requests_per_minute": 1200,
    "source": "tier",
    "next_tier": 5,
    "next_tier_minimum_spend": "1000.00"
  },
  "discount": {
    "level": 5,
    "successful_spend_90_days": "550.00",
    "window_days": 90,
    "percent": 30,
    "source": "level",
    "next_level": 6,
    "next_level_minimum_spend": "1000.00"
  }
}

常见错误

状态响应体原因
403{"error":"Account suspended"}账户未处于有效状态,因此此 key 无法获取权益状态。

两套独立消费体系

API 吞吐量和价格折扣使用不同的时间窗口。单纯充值不会推进任何一项。

  • API 速率层级:终身保留的成功消费可获得层级 0–6,以及每 60 秒滚动窗口 120–2,400 次共享请求。
  • 折扣等级:最近 90 天保留的成功消费可获得等级 0–7,以及仪表盘和 API 订单最高 0–50% 的折扣。
  • 计入退款:后续全额或部分退款会减少该订单对应的成功金额。
  • 只读:此 action 报告当前物化总额。管理员直接 RPM 覆盖会改变 effective_requests_per_minute 和 source,不会改变已获得的 API 层级。

响应分组

api_rate

tier_requests_per_minute 是固定阶梯值。effective_requests_per_minute 是实际执行的账户共享上限。source 为 tier 或 custom。

discount

percent 是当前最高折扣。供应商成本底线可能降低某项服务的折扣。source 为 level 或 custom。