SPIN
Support Agent is typing

Join Our Channel!

Get exclusive offers, discount codes, and updates before anyone else.

Join Now
Close in 5s...
Community Reviews
@World_Smm_Panel
Login

API Overview
HTTP Method POST
API URL https://worldsmmpanel.us.cc/api/v2
API Key Login to view your API Key.
Response Format JSON
Service List action: services
ParameterDescription
keyYour API Key
actionservices
Response Example
[
    {
        "service": 1,
        "name": "Followers",
        "type": "Default",
        "category": "Instagram",
        "rate": "0.90",
        "min": "50",
        "max": "10000",
        "refill": true
    }
]
Add Order action: add
Select a service type to view specific parameters.
ParameterDescription
keyAPI Key
actionadd
serviceService ID
linkLink to page/post
quantityQuantity needed
runs(Optional) Runs to deliver
interval(Optional) Interval in minutes
$api_url = 'https://worldsmmpanel.us.cc/api/v2';
$api_key = 'YOUR_API_KEY';

$data = array(
    'key' => $api_key,
    'action' => 'add',
    'service' => 1,
    'link' => 'https://example.com/post',
    'quantity' => 1000
);

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $api_url);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close($ch);

echo $response;
Success Response:
{ "order": 23501 }
Order Statusaction: status
ParameterDescription
keyAPI Key
actionstatus
orderOrder ID
{
    "charge": "0.27819",
    "start_count": "3572",
    "status": "Partial",
    "remains": "157",
    "currency": "USD"
}
Multi Statusaction: status
ParameterDescription
keyAPI Key
actionstatus
ordersOrder IDs (comma separated, e.g. 1,2,3)
User Balanceaction: balance
ParameterDescription
keyAPI Key
actionbalance
{
    "balance": "100.84292",
    "currency": "USD"
}