Integrate our SMM services into your own applications using our simple REST API.
POST https://iropnetplus.com/api.php
key=YOUR_API_KEY&action=servicesResponse:
[{"service":1,"name":"Instagram Followers","rate":"1.50","min":100,"max":100000,"category":"Instagram"},...]
key=YOUR_API_KEY&action=add&service=SERVICE_ID&link=URL&quantity=AMOUNTResponse:
{"order":1234,"charge":1.50,"status":"pending"}
key=YOUR_API_KEY&action=status&order=ORDER_IDResponse:
{"order":1234,"status":"inprogress","start_count":150,"remains":350}
key=YOUR_API_KEY&action=balanceResponse:
{"balance":150.00,"currency":"USD"}
<?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); ?>
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())
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);