BoosterZone - Jasa Followers, Likes, Views & Komentar Facebook, Instagram, TikTok
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
ParameterKeterangan
serviceID layanan (dari action services)
dataLink/username target
quantityJumlah (wajib buat layanan non-Comments)
komenIsi 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