Complete guide to integrate with Solven Panel API
https://smmpanel.akisforum.com/api/v2/
All API requests must be sent via HTTP POST method.
Response format: JSON
Every API request requires your unique API key. You can find your API key in the dashboard.
Parameter:
key=YOUR_API_KEY
Retrieve all available services and their details.
key - Your API keyaction - servicescurl -X POST https://smmpanel.akisforum.com/api/v2/ \ -d "key=YOUR_API_KEY" \ -d "action=services"
[
{
"service": 1,
"name": "Instagram Followers",
"type": "Default",
"rate": "0.50",
"min": "10",
"max": "10000",
"refill": true,
"cancel": true
},
{
"service": 2,
"name": "Instagram Likes",
"type": "Default",
"rate": "0.30",
"min": "10",
"max": "5000",
"refill": false,
"cancel": true
}
]
Place a new order for a specific service.
key - Your API keyaction - addservice - Service ID from services listlink - Target URL (profile/post link)quantity - Order quantity (min/max from service)curl -X POST https://smmpanel.akisforum.com/api/v2/ \ -d "key=YOUR_API_KEY" \ -d "action=add" \ -d "service=1" \ -d "link=https://instagram.com/username" \ -d "quantity=1000"
{
"order": 12345
}
{
"error": "Insufficient balance"
}
Get the current status of an order.
key - Your API keyaction - statusorder - Order IDcurl -X POST https://smmpanel.akisforum.com/api/v2/ \ -d "key=YOUR_API_KEY" \ -d "action=status" \ -d "order=12345"
{
"charge": "0.50",
"start_count": "1000",
"status": "In progress",
"remains": "500",
"currency": "USD"
}
Get the status of multiple orders at once.
key - Your API keyaction - statusorders - Comma-separated order IDscurl -X POST https://smmpanel.akisforum.com/api/v2/ \ -d "key=YOUR_API_KEY" \ -d "action=status" \ -d "orders=12345,12346,12347"
{
"12345": {
"charge": "0.50",
"start_count": "1000",
"status": "Completed",
"remains": "0",
"currency": "USD"
},
"12346": {
"charge": "0.30",
"start_count": "500",
"status": "In progress",
"remains": "250",
"currency": "USD"
}
}
Get your current account balance.
key - Your API keyaction - balancecurl -X POST https://smmpanel.akisforum.com/api/v2/ \ -d "key=YOUR_API_KEY" \ -d "action=balance"
{
"balance": "100.00",
"currency": "USD"
}
| Error Message | Description |
|---|---|
Invalid API key |
The provided API key is incorrect or inactive |
Invalid action |
The action parameter is missing or invalid |
Service not found |
The requested service ID does not exist |
Insufficient balance |
Your account balance is too low for this order |
Invalid link |
The provided URL is invalid or not supported |
Order not found |
The requested order ID does not exist |
Quantity out of range |
Quantity is below minimum or above maximum |
If you have questions or need assistance with the API integration, please contact our support team.
Login to Get Started