Developer API

Automate campaign creation and tracking with simple `POST` requests.

HTTP Method POST
API URL https://xeonsora.site/api/v2
API Key Create an account or sign in to access your API key.
Content Type application/x-www-form-urlencoded
Response format JSON

Plan Catalog

Parameters Description
keyYour API key
actionservices

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
keyYour API key
actionadd
servicePlan ID
linkTarget link / username
quantityCampaign quantity

Example response

{
  "order": 19379
}

Campaign Status

Parameters Description
keyYour API key
actionstatus
orderCampaign ID

Example response

{
  "charge": "0.990",
  "start_count": 0,
  "status": "pending",
  "remains": 660,
  "currency": "PHP"
}

Wallet Balance

Parameters Description
keyYour API key
actionbalance

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;
?>