| Parameter | Value |
| key | Your API key |
| action | services |
Response
[
{
"service": 1,
"name": "Instagram Followers",
"type": "Default",
"category": "Instagram",
"rate": "89.0000",
"min": "100",
"max": "100000",
"refill": true,
"cancel": false
},
...
]
Try it →
| Parameter | Value |
| key | Your API key |
| action | status |
| order | Order ID |
Response
{
"charge": "89.00",
"start_count": "1250",
"status": "In progress",
"remains": "750",
"currency": "INR"
}
| Parameter | Value |
| key | Your API key |
| action | status |
| orders | 1,2,3 (comma separated, up to 100) |
Response
{
"1": { "charge": "89.00", "status": "Completed", "remains": "0" },
"2": { "charge": "149.00", "status": "In progress", "remains": "500" },
"3": { "error": "Incorrect order ID" }
}
Code examples
PHP
Python
JavaScript
cURL
<?php
$url = 'https://isocialize.net/api.php';
$key = 'YOUR_API_KEY';
// Get services
$response = file_get_contents($url, false, stream_context_create([
'http' => [
'method' => 'POST',
'header' => 'Content-Type: application/x-www-form-urlencoded',
'content' => http_build_query(['key' => $key, 'action' => 'services'])
]
]));
$services = json_decode($response, true);
// Add order
$order = file_get_contents($url, false, stream_context_create([
'http' => [
'method' => 'POST',
'header' => 'Content-Type: application/x-www-form-urlencoded',
'content' => http_build_query([
'key' => $key,
'action' => 'add',
'service' => 1,
'link' => 'https://instagram.com/yourprofile',
'quantity' => 1000
])
]
]));
echo json_decode($order, true)['order']; // Order ID
?>
import requests
url = 'https://isocialize.net/api.php'
key = 'YOUR_API_KEY'
# Get services
r = requests.post(url, data={'key': key, 'action': 'services'})
services = r.json()
# Add order
r = requests.post(url, data={
'key': key,
'action': 'add',
'service': 1,
'link': 'https://instagram.com/yourprofile',
'quantity': 1000
})
print(r.json()['order']) # Order ID
const url = 'https://isocialize.net/api.php';
const key = 'YOUR_API_KEY';
// Get services
const res = await fetch(url, {
method: 'POST',
headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
body: new URLSearchParams({ key, action: 'services' })
});
const services = await res.json();
// Add order
const order = await fetch(url, {
method: 'POST',
headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
body: new URLSearchParams({
key, action: 'add',
service: 1,
link: 'https://instagram.com/yourprofile',
quantity: 1000
})
});
const { order: orderId } = await order.json();
# Get services
curl -X POST https://isocialize.net/api.php \
-d "key=YOUR_API_KEY&action=services"
# Add order
curl -X POST https://isocialize.net/api.php \
-d "key=YOUR_API_KEY&action=add&service=1&link=https://instagram.com/yourprofile&quantity=1000"
# Check order status
curl -X POST https://isocialize.net/api.php \
-d "key=YOUR_API_KEY&action=status&order=23501"
Order statuses
PendingOrder received, not started yet
ProcessingOrder accepted by provider
In progressDelivery started
CompletedFully delivered
PartialPartially delivered, refund issued for remainder
CanceledOrder canceled, refund issued