API Integration Guide
IGFollow SMM provides a standard SMM Reseller API compatible with Perfect Panel, SmartPanel, and other major reseller panel systems.
Quantity Split Logic
• 100 to 500 Qty: Orders are forwarded directly to the original supplier at 100% exact quantity.
• 501 to 500,000 Qty: Orders are automatically reduced by 10% (e.g. 1000 → 900) before placing.
API Endpoint
POST
https://igfollow.shop/api/v2
Perfect Panel Integration
- Log into your Perfect Panel Admin Dashboard.
- Go to Providers > Add Provider.
- Select Standard / Reseller API type.
- Enter API URL:
https://igfollow.shop/api/v2.
- Enter API Key (Found in your IGFollow Admin Panel).
- Save and click Fetch Services.
API Reference
1. Place Order (Action: add)
| Parameter | Type | Description |
| key | string | Your API Key |
| action | string | Must be add |
| service | integer | Service ID |
| link | string | Target URL or Username |
| quantity | integer | Quantity (100 - 500,000) |
{
"status": "ok",
"order": 10582
}
2. Order Status (Action: status)
| Parameter | Type | Description |
| key | string | Your API Key |
| action | string | Must be status |
| order | integer | Order ID |
{
"status": "Completed",
"charge": "0.00",
"start_count": "5400",
"remains": "0",
"currency": "USD"
}
3. Check Balance (Action: balance)
| Parameter | Type | Description |
| key | string | Your API Key |
| action | string | Must be balance |
{
"balance": "85.20",
"currency": "USD"
}
4. Services List (Action: services)
| Parameter | Type | Description |
| key | string | Your API Key |
| action | string | Must be services |