ℹ️Jangan lupa ganti password Anda secara berkala demi keamanan akun | Aktifkan
2FA untuk keamanan ekstra | Ada kendala seputar order/deposit? Hubungi admin
✕
Dokumentasi API BoosterZone
Bikin panel/sistem sendiri dan order otomatis ke katalog BoosterZone lewat API. Butuh API Key & Secret Key — generate gratis di
halaman Pengaturan setelah
daftar akun.
Base URL
https://boosterzone.id/api/v1.php
Method POST (form-data atau JSON body, bebas pilih). Semua request wajib sertakan api_key, secret_key, dan action.
1. profile — Cek Saldo
curl -X POST https://boosterzone.id/api/v1.php \
-d "api_key=API_KEY_ANDA" \
-d "secret_key=SECRET_KEY_ANDA" \
-d "action=profile"
Response:
{ "status": true, "data": { "balance": 150000 } }
2. services — List Layanan
Mengembalikan semua layanan aktif beserta harga jual (per 1000), min, dan max order.
curl -X POST https://boosterzone.id/api/v1.php \
-d "api_key=API_KEY_ANDA" \
-d "secret_key=SECRET_KEY_ANDA" \
-d "action=services"
Response:
{
"status": true,
"data": [
{
"service": 13,
"name": "Facebook Comments Custom (Budget)",
"platform": "Facebook",
"category": "Comments",
"rate": 6396,
"min": 10,
"max": 100000
},
...
]
}
3. order — Buat Pesanan
| Parameter | Keterangan |
service | ID layanan (dari action services) |
data | Link/username target |
quantity | Jumlah (wajib buat layanan non-Comments) |
komen | Isi komentar, 1 baris = 1 komentar (wajib khusus layanan kategori Comments, quantity otomatis ngikutin jumlah baris) |
curl -X POST https://boosterzone.id/api/v1.php \
-d "api_key=API_KEY_ANDA" \
-d "secret_key=SECRET_KEY_ANDA" \
-d "action=order" \
-d "service=13" \
-d "data=https://facebook.com/share/p/xxxxx" \
-d "komen=Mantap banget!"
Response sukses:
{ "status": true, "data": { "id": 42 } }
Response gagal (contoh saldo kurang):
{ "status": false, "data": { "msg": "Saldo tidak cukup." } }
4. status — Cek Status Order
curl -X POST https://boosterzone.id/api/v1.php \
-d "api_key=API_KEY_ANDA" \
-d "secret_key=SECRET_KEY_ANDA" \
-d "action=status" \
-d "id=42"
Response:
{ "status": true, "data": { "status": "Processing", "charge": 7598 } }
Nilai status salah satu dari: Pending, Processing, Success, Error.
Catatan Penting
- Harga di
rate itu udah harga jual BoosterZone (per 1000), potong langsung dari saldo Anda.
- Jaga Secret Key baik-baik — siapapun yang pegang bisa pakai saldo Anda buat order.
- Kalau Secret Key bocor, langsung generate ulang lewat halaman Pengaturan, key lama otomatis mati.