API Documentation

Integrate our SMM services into your own applications using our simple REST API.

Login to see your API key.
API Endpoint
POST https://iropnetplus.com/api.php
Available Actions
POST services - Get all services
key=YOUR_API_KEY&action=services
Response:
[{"service":1,"name":"Instagram Followers","rate":"1.50","min":100,"max":100000,"category":"Instagram"},...]
POST add - Create new order
key=YOUR_API_KEY&action=add&service=SERVICE_ID&link=URL&quantity=AMOUNT
Response:
{"order":1234,"charge":1.50,"status":"pending"}
POST status - Check order status
key=YOUR_API_KEY&action=status&order=ORDER_ID
Response:
{"order":1234,"status":"inprogress","start_count":150,"remains":350}
POST balance - Check account balance
key=YOUR_API_KEY&action=balance
Response:
{"balance":150.00,"currency":"USD"}
Code Examples

PHP

<?php
$apiKey = 'YOUR_API_KEY';
$apiUrl = 'https://iropnetplus.com/api.php';

// Get services
$data = ['key' => $apiKey, 'action' => 'services'];
$ch = curl_init($apiUrl);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$result = curl_exec($ch);
curl_close($ch);
$services = json_decode($result, true);
print_r($services);
?>

Python

import requests

api_key = 'YOUR_API_KEY'
api_url = 'https://iropnetplus.com/api.php'

# Get balance
response = requests.post(api_url, data={
    'key': api_key,
    'action': 'balance'
})
print(response.json())

Node.js

const axios = require('axios');

const apiKey = 'YOUR_API_KEY';
const apiUrl = 'https://iropnetplus.com/api.php';

// Create order
const result = await axios.post(apiUrl, new URLSearchParams({
    key: apiKey,
    action: 'add',
    service: 1,
    link: 'https://instagram.com/username',
    quantity: 1000
}));
console.log(result.data);