Developer API
Automate campaign creation and tracking with simple `POST` requests.
Plan Catalog
| Parameters |
Description |
key | Your API key |
action | services |
Example response
[
{
"service": 1,
"name": "Instagram Followers",
"type": "Default",
"category": "Instagram",
"rate": "1.500",
"min": "100",
"max": "50000",
"refill": true,
"cancel": true,
"currency": "PHP"
}
]
Launch Campaign
| Parameters |
Description |
key | Your API key |
action | add |
service | Plan ID |
link | Target link / username |
quantity | Campaign quantity |
Example response
{
"order": 19379
}
Campaign Status
| Parameters |
Description |
key | Your API key |
action | status |
order | Campaign ID |
Example response
{
"charge": "0.990",
"start_count": 0,
"status": "pending",
"remains": 660,
"currency": "PHP"
}
Wallet Balance
| Parameters |
Description |
key | Your API key |
action | balance |
Example response
{
"balance": "25.00",
"currency": "PHP"
}
PHP Example
<?php
$post = [
'key' => 'YOUR_API_KEY',
'action' => 'services'
];
$ch = curl_init('https://xeonsora.site/api/v2');
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($post));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>