Automate orders with our powerful API. Perfect Panel v2 compatible.
https://iropnetplus.com/apiEvery request requires your key parameter, found in your profile.
action=services&key=KEY
Returns the full list of services with pricing.
action=add&service=ID&link=URL&quantity=1000&key=KEY
Places an order, returns the order ID.
action=status&orders=1234,1235&key=KEY
Returns status of one or more orders.
action=balance&key=KEY
Returns your current account balance.
action=refill&order=ID&key=KEY
Requests a refill for a completed order.
pending, processing, in_progress, completed, partial, canceled, refunded
$ch = curl_init('https://iropnetplus.com/api');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_POST => true,
CURLOPT_POSTFIELDS => http_build_query([
'key' => 'YOUR_API_KEY',
'action' => 'add',
'service' => 1,
'link' => 'https://instagram.com/post',
'quantity' => 1000,
]),
]);
echo curl_exec($ch);