API Docs
| HTTP Method | POST |
| API URL | http://16.192.82.15/api/v1.php |
| API KEY | Login to view API KEY |
| Response format | JSON |
Add order
| Parameters | Description |
| key | Your API key |
| action | add |
| service | Service ID |
| link | Link to page |
| quantity | Needed quantity |
| comments | Comments list optional |
| runs | Runs to deliver optional |
| interval | Interval in minutes optional |
Example success response
{
"order": 23501
}
Example error response
{
"error": "Incorrect service type"
}
Services List
| Parameters | Description |
| key | Your API key |
| action | services |
Example response
[
{
"service": 1,
"name": "Instagram Followers",
"type": "Default",
"category": "Instagram",
"rate": "0.90",
"min": "50",
"max": "10000"
},
{
"service": 2,
"name": "YouTube Views",
"type": "Default",
"category": "YouTube",
"rate": "8",
"min": "100",
"max": "15000"
}
]
Order status
| Parameters | Description |
| key | Your API key |
| action | status |
| order | Order ID |
Example response
{
"charge": "0.27819",
"start_count": "3572",
"status": "Partial",
"remains": "157",
"currency": "INR"
}
Multiple Order status
| Parameters | Description |
| key | Your API key |
| action | status |
| orders | Order IDs separated by comma |
Example response
{
"1": {
"charge": "0.27819",
"start_count": "3572",
"status": "Partial",
"remains": "157",
"currency": "INR"
},
"10": {
"error": "Incorrect order ID"
}
}
Balance
| Parameters | Description |
| key | Your API key |
| action | balance |
Example response
{
"balance": "10000",
"currency": "INR"
}
Refill
| Parameters | Description |
| key | Your API key |
| action | refill |
| order | Order ID |
Example response
{
"status": "Success",
"message": "Your order successfully added for refill."
}
Cancel
| Parameters | Description |
| key | Your API key |
| action | cancel |
| order | Order ID |
Example response
{
"status": "Success",
"message": "Your order was successfully marked for cancellation."
}
Example of PHP code
<?php
$api_url = "http://16.192.82.15/api/v1.php";
$api_key = "YOUR_API_KEY";
$data = [
"key" => $api_key,
"action" => "add",
"service" => 123,
"link" => "https://instagram.com/example",
"quantity" => 1000
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $api_url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>