API Documentation

Complete guide to integrate with Solven Panel API

API Endpoint

https://smmpanel.akisforum.com/api/v2/

All API requests must be sent via HTTP POST method.

Response format: JSON

Authentication

Every API request requires your unique API key. You can find your API key in the dashboard.

Parameter:

key=YOUR_API_KEY

1. Get Services List

Retrieve all available services and their details.

Request Parameters

key - Your API key
action - services

Example Request

curl -X POST https://smmpanel.akisforum.com/api/v2/ \
  -d "key=YOUR_API_KEY" \
  -d "action=services"

Example Response

[
  {
    "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
  }
]

2. Add New Order

Place a new order for a specific service.

Request Parameters

key - Your API key
action - add
service - Service ID from services list
link - Target URL (profile/post link)
quantity - Order quantity (min/max from service)

Example Request

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"

Example Response (Success)

{
  "order": 12345
}

Example Response (Error)

{
  "error": "Insufficient balance"
}

3. Check Order Status

Get the current status of an order.

Request Parameters

key - Your API key
action - status
order - Order ID

Example Request

curl -X POST https://smmpanel.akisforum.com/api/v2/ \
  -d "key=YOUR_API_KEY" \
  -d "action=status" \
  -d "order=12345"

Example Response

{
  "charge": "0.50",
  "start_count": "1000",
  "status": "In progress",
  "remains": "500",
  "currency": "USD"
}

4. Check Multiple Orders Status

Get the status of multiple orders at once.

Request Parameters

key - Your API key
action - status
orders - Comma-separated order IDs

Example Request

curl -X POST https://smmpanel.akisforum.com/api/v2/ \
  -d "key=YOUR_API_KEY" \
  -d "action=status" \
  -d "orders=12345,12346,12347"

Example Response

{
  "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"
  }
}

5. Check Account Balance

Get your current account balance.

Request Parameters

key - Your API key
action - balance

Example Request

curl -X POST https://smmpanel.akisforum.com/api/v2/ \
  -d "key=YOUR_API_KEY" \
  -d "action=balance"

Example Response

{
  "balance": "100.00",
  "currency": "USD"
}

Error Codes

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

Need Help?

If you have questions or need assistance with the API integration, please contact our support team.

Login to Get Started