API
HTTP Method: POST · Response: JSON
API Key
HTTPS
Bağlantı detayları
API URL
https://example.com/api/v2
Header
Content-Type: application/x-www-form-urlencoded
Auth
key=your_api_key
Endpoint’ler
Service list
action =services
| Parametre | Açıklama |
|---|---|
| key | API anahtarınız |
| action | services |
Response
[
{ "service": 1, "name": "followers [real]", "rate": "0.95", "min": 50, "max": 10000, "category": "Instagram" },
{ "service": 2, "name": "likes [fast]", "rate": "0.35", "min": 10, "max": 50000, "category": "Instagram" }
]
Add order
action =add
| Parametre | Açıklama |
|---|---|
| key | API anahtarınız |
| action | add |
| service | Servis ID |
| link | Sipariş linki |
| quantity | Adet |
| runs / interval | Drip-feed için (opsiyonel) |
Response
{ "order": 12345 }
Order status
action =status
| Parametre | Açıklama |
|---|---|
| key | API anahtarınız |
| action | status |
| order | Sipariş ID |
Response
{
"charge":"0.67","start_count":"1000","status":"In progress","remains":"120"
}
Multiple orders status
action =status (order ids CSV)
| Parametre | Açıklama |
|---|---|
| key | API anahtarınız |
| action | status |
| orders | Virgülle ayrılmış en fazla 100 ID |
Response
{
"12345": { "charge":"0.67","status":"Completed" },
"12346": { "charge":"1.20","status":"In progress" }
}
Create refill
action =refill
| Parametre | Açıklama |
|---|---|
| key | API anahtarınız |
| action | refill |
| order | Sipariş ID |
Response
{ "refill": "654321" }
Create multiple refill
action =refill (orders CSV)
| Parametre | Açıklama |
|---|---|
| key | API anahtarınız |
| action | refill |
| orders | Virgülle ayrılmış ID'ler (≤100) |
Response
{
"orders": { "1": { "refill":"654321" }, "2": { "refill":"654322" } },
"success": "request sent"
}
Get refill status
action =refill_status
| Parametre | Açıklama |
|---|---|
| key | API anahtarınız |
| action | refill_status |
| refill | Refill ID |
Response
{ "status": "Completed" }
Get multiple refill status
action =refill_status (refill ids CSV)
| Parametre | Açıklama |
|---|---|
| key | API anahtarınız |
| action | refill_status |
| refills | Virgülle ayrılmış ID'ler (≤100) |
Response
{
"654321": { "status":"Completed" },
"654322": { "status":"In progress" }
}
Create cancel
action =cancel
| Parametre | Açıklama |
|---|---|
| key | API anahtarınız |
| action | cancel |
| orders | Virgülle ayrılmış sipariş ID’leri |
Response
{
"1": { "status":"Partial" }, "2": { "status":"Canceled" }
}
User balance
action =balance
| Parametre | Açıklama |
|---|---|
| key | API anahtarınız |
| action | balance |
Response
{ "balance":"12.50", "currency":"USD" }