API documentation

A standard interface compatible with SMM panel tooling.

GET / POST https://www.7xpanel.com/api/v2
Parameter Service details
key * Your API key
action * The action to perform

Service list

action=services
Parameter Service details
key * Your API key
action * services
Example response
[
  {
    "service": 1,
    "name": "Instagram Followers",
    "type": "Default",
    "rate": "2.50",
    "min": 100,
    "max": 10000,
    "dripfeed": false,
    "refill": true,
    "cancel": false,
    "category": "Followers"
  }
]

Add order

action=add
Parameter Service details
key * Your API key
action * add
service * Service id
link * Profile or post link
quantity * Quantity to order
Example response
{
  "order": 23501
}

Order status

action=status
Parameter Service details
key * Your API key
action * status
order A single order id
orders Comma separated order ids
Example response
{
  "charge": "1.25",
  "start_count": "120",
  "status": "In progress",
  "remains": "280",
  "currency": "USD"
}

Create refill

action=refill
Parameter Service details
key * Your API key
action * refill
order A single order id
orders Comma separated order ids
Example response
{
  "error": "Refill is disabled for this service"
}

Cancel order

action=cancel
Parameter Service details
key * Your API key
action * cancel
orders Comma separated order ids
Example response
{
  "error": "error.cancel_unavailable"
}

Account balance

action=balance
Parameter Service details
key * Your API key
action * balance
Example response
{
  "balance": "48.7500",
  "currency": "USD"
}
Example request
curl -X POST "https://www.7xpanel.com/api/v2" \
  -d "key=YOUR_API_KEY" \
  -d "action=add" \
  -d "service=1" \
  -d "link=https://instagram.com/username" \
  -d "quantity=1000"
Sign up