notpanel
LayananHargaFAQGiveawayAPI
notpanel

Followers, likes, dan views untuk semua platform.

Katalog menggabungkan layanan yang kami operasikan langsung dengan kapasitas dari mitra terverifikasi. Ketersediaan, waktu, refill, dan drip-feed ditampilkan per layanan; rute dan identitas mitra tetap rahasia.

Produk

  • Layanan
  • Harga
  • Indeks harga
  • Program Afiliasi

Sumber Daya

  • API
  • Blog
  • FAQ
  • Status

Perusahaan

  • Tentang
  • Kenapa NotPanel
  • Hubungi Kami

Hukum

  • Syarat Layanan
  • Kebijakan Privasi
  • Kebijakan Pengembalian Dana

Bahasa

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

© 2026 NotPanel. Hak cipta dilindungi.

support@notpanel.com
notpanel
Dokumentasi API
+
Dokumentasi API

Pengantar

  • Ikhtisar
  • Memulai
  • Autentikasi
  • Rate limit
  • Error

Katalog

  • Daftar service
  • Katalog lanjutan
  • Tipe layanan

Order

  • Buat order
  • Status order
  • Quote refund
  • Refill
  • Batalkan

Akun

  • Status akun
  • Balance

Webhook

  • Kelola webhook

Referensi

  • Changelog
  • SDK & library

Butuh bantuan?

support@notpanel.com →

Minta refill

Membuat permintaan refill untuk order completed atau partial yang memenuhi syarat setelah masa tunggu 24 jam. Tidak ada batas total percobaan, tetapi hanya satu refill dapat pending, processing, atau ditinjau pada satu waktu.

POSThttps://notpanel.com/api/v3action=refill
API key diperlukanDibatasi rate (akun bersama + IP + action)Body: application/x-www-form-urlencoded

Parameter

NamaTipeDeskripsi
keyWajibstringAPI key Anda.
actionWajibstringHarus berupa string literal "refill".
orderstringID order tunggal. Gunakan order atau orders; jika keduanya diberikan, orders menang.
ordersstring (CSV)Hingga 100 ID order dipisah koma untuk refill batch. Mengembalikan array — setiap baris membawa ID refill atau error per-order.

Contoh request

Ganti YOUR_API_KEY dengan key yang dibuat di halaman API dashboard Anda.

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

Contoh response

{
  "refill": 8001
}

Error umum

StatusBodyPenyebab
400{"error":"Order not found"}ID order tidak ada atau bukan milik akun Anda.
400{"error":"Refill only available for completed or partial orders"}Order tidak berstatus completed atau partial. Status order lain tidak eligible untuk refill.
400{"error":"Service does not support refills"}Service yang mendasari memiliki refill=false. Periksa katalog services sebelum mengirim permintaan refill.
400{"error":"A refill request is already pending for this order"}Tunggu refill sebelumnya selesai sebelum membuat yang lain.
400{"error":"Refill is available 24 hours after the order is completed"}Pesanan selesai kurang dari 24 jam yang lalu.

Response multi-refill

Ketika orders disediakan, setiap item dalam response berupa {order, refill} saat sukses atau {order, error} per kegagalan individual. Kegagalan per-baris tidak menggagalkan batch.

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

Status refill

Gunakan action=refill_status untuk memantau siklus hidup sebuah refill. ID tunggal melalui refill; hingga 100 ID melalui 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" }
]