notpanel
सेवाएंमूल्य निर्धारणFAQगिवअवेAPI
notpanel

हर प्लेटफॉर्म के लिए फॉलोअर्स, लाइक और व्यूज़।

कैटलॉग में हमारी सीधे संचालित सेवाएं और जांचे हुए साझेदारों की क्षमता दोनों शामिल हैं। उपलब्धता, समय, refill और drip-feed हर सेवा पर दिखते हैं; रूटिंग और साझेदारों की पहचान गोपनीय रहती है।

प्रोडक्ट

  • सेवाएं
  • मूल्य निर्धारण
  • मूल्य सूचकांक
  • एफिलिएट प्रोग्राम

संसाधन

  • API
  • ब्लॉग
  • FAQ
  • स्थिति

कंपनी

  • हमारे बारे में
  • NotPanel क्यों
  • संपर्क करें

कानूनी

  • सेवा की शर्तें
  • गोपनीयता नीति
  • रिफंड नीति

भाषाएँ

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

© 2026 NotPanel. सर्वाधिकार सुरक्षित।

support@notpanel.com
notpanel
API डॉक्युमेंटेशन
+
API डॉक्युमेंटेशन

परिचय

  • अवलोकन
  • शुरू करना
  • प्रमाणीकरण
  • रेट लिमिट
  • एरर

कैटलॉग

  • सर्विसेज़ की सूची
  • Advanced catalog
  • सेवा प्रकार

ऑर्डर

  • ऑर्डर प्लेस करें
  • ऑर्डर स्टेटस
  • Refund quote
  • रिफिल
  • रद्द करें

अकाउंट

  • Account status
  • बैलेंस

Webhooks

  • Webhooks मैनेज करें

रेफ़रेंस

  • चेंजलॉग
  • SDK और लाइब्रेरी

मदद चाहिए?

support@notpanel.com →

Account status

Account के spend से मिले दो independent benefits लौटाता है: lifetime API throughput progress और rolling 90-day discount progress। यह read किसी value को नहीं बदलता।

POSThttps://notpanel.com/api/v3action=account_status
API की आवश्यकरेट लिमिटेड (shared account + IP + action)बॉडी: application/x-www-form-urlencoded

पैरामीटर

नामटाइपविवरण
keyआवश्यकstringआपकी API की।
actionआवश्यकstringलिटरल स्ट्रिंग "account_status" होना चाहिए।

उदाहरण रिक्वेस्ट

YOUR_API_KEY को अपने डैशबोर्ड के API पेज के तहत जनरेट की गई की से बदलें।

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"}Account active नहीं है, इसलिए इस कुंजी के लिए benefit status उपलब्ध नहीं है।

दो independent spend systems

API throughput और pricing discounts अलग time windows इस्तेमाल करते हैं। केवल deposit करने से कोई system आगे नहीं बढ़ता।

  • API rate tier: lifetime retained successful spend से Tier 0–6 और rolling 60 seconds में shared 120–2,400 requests मिलती हैं।
  • Discount level: पिछले 90 दिनों के retained successful spend से Level 0–7 और dashboard व API orders पर 0–50% तक discount मिलता है।
  • Refund-aware: बाद का full या partial refund उस order के successful amount को घटाता है।
  • Read-only: यह action मौजूदा materialized totals बताता है। Direct admin RPM override effective_requests_per_minute और source बदलता है, earned API tier नहीं।

Response groups

api_rate

tier_requests_per_minute fixed ladder value है। effective_requests_per_minute enforced shared account limit है। source tier या custom होता है।

discount

percent मौजूदा up-to discount है। Provider-cost floor किसी service के लिए इसे घटा सकता है। source level या custom होता है।