Reseller API

Automate orders with our powerful API. Perfect Panel v2 compatible.

API Endpoint: https://iropnetplus.com/api
Authentication

Every request requires your key parameter, found in your profile.

Endpoints
Services
action=services&key=KEY Returns the full list of services with pricing.
Add Order
action=add&service=ID&link=URL&quantity=1000&key=KEY Places an order, returns the order ID.
Order Status
action=status&orders=1234,1235&key=KEY Returns status of one or more orders.
Balance
action=balance&key=KEY Returns your current account balance.
Refill
action=refill&order=ID&key=KEY Requests a refill for a completed order.
Status Values

pending, processing, in_progress, completed, partial, canceled, refunded

PHP Example
$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);