💬 WhatsApp support

API Documentation

Connect our panel to your own website or panel. Standard Social media tool API format: works with any script.

Base information
API URLhttps://isocialize.net/api.php
HTTP MethodPOST
Response formatJSON
AuthenticationAPI Key (per request)
POST Get services list
ParameterValue
keyYour API key
actionservices
Response
[
  {
    "service": 1,
    "name": "Instagram Followers",
    "type": "Default",
    "category": "Instagram",
    "rate": "89.0000",
    "min": "100",
    "max": "100000",
    "refill": true,
    "cancel": false
  },
  ...
]
Try it →
POST Add order
ParameterValue
keyYour API key
actionadd
serviceService ID
linkURL to your post/profile
quantityNumber of units
Response
{
  "order": 23501
}
POST Order status
ParameterValue
keyYour API key
actionstatus
orderOrder ID
Response
{
  "charge": "89.00",
  "start_count": "1250",
  "status": "In progress",
  "remains": "750",
  "currency": "INR"
}
POST Multiple orders status
ParameterValue
keyYour API key
actionstatus
orders1,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" }
}
POST Account balance
ParameterValue
keyYour API key
actionbalance
Response
{
  "balance": "1250.00",
  "currency": "INR"
}
POST Cancel order
ParameterValue
keyYour API key
actioncancel
ordersOrder ID
Response
{
  "cancel": { "1": 1 }
}
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
?>
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
💬 WhatsApp support