Informasi Dasar
| Metode HTTP | POST |
|---|---|
| Response format | JSON |
| API URL (PROFILE) | |
| API URL (LAYANAN) | |
| API URL (ORDER) | |
| API URL (STATUS) | |
| API KEY | API Key Anda, dapat dilihat di profil akun. |
Profile
| Parameter | Keterangan |
|---|---|
key | API Key Anda |
action | Gunakan action dengan profile |
Contoh Class |
PHP |
Contoh Respon
Sukses
{
"status": true,
"data": {
"username": "ndororol",
"balance": 100900
}
}
Gagal
{
"status": false,
"data": "API Key salah"
}
Daftar Layanan
| Parameter | Keterangan |
|---|---|
key | API Key Anda |
action | Gunakan action dengan layanan |
Contoh Class |
PHP |
Contoh Respon
Sukses
{
"status": true,
"data": [
{
"id": 1,
"category": "Instagram Followers",
"service": "Instagram Followers S1",
"price": 10000,
"min": 100,
"max": 10000,
"note": "Super Fast, Input Username"
},
{
"id": 2,
"category": "Instagram Likes",
"service": "Instagram Likes S1",
"price": 5000,
"min": 100,
"max": 10000,
"note": "Super Fast, Input Post Url"
}
]
}
Gagal
{
"status": false,
"data": "API Key salah"
}
Pemesanan
| Parameter | Keterangan |
|---|---|
key | API Key Anda |
action | Gunakan order |
service | ID Layanan (lihat Daftar Layanan) |
target | Sesuai kebutuhan (username/url/id) |
quantity | Jumlah (jika bukan komentar custom) |
Contoh Class |
PHP |
Contoh Respon
Sukses
{
"status": true,
"data": {
"id": 1107,
"price": 10900
}
}
Gagal
{
"status": false,
"data": "API Key salah"
}
Status Pemesanan
| Parameter | Keterangan |
|---|---|
key | API Key Anda |
action | Gunakan status |
id | ID pesanan |
Contoh Class |
PHP |
Contoh Respon
Sukses
{
"status": true,
"data": {
"status": "Success",
"start_count": 10900,
"remains": 0
}
}
Gagal
{
"status": false,
"data": "API Key salah"
}