logo
  • EN
    English
    فارسی
  • USD
    USD
    Toman
  • Home
  • Login
  • Sign up
  • Track orders
  • API
  • Contact us
  • قوانین

API Documents ( v2 )

To get a personal token, Login

This API is fully compatible with SmartPanel based panels
Use this API version if you're using SmartPanel script.
Our main API is more clear and provides more details.



Initialisation
Method: POST
Route: https://ipanel.me/api/v2/
Response: JSON

Body Parameters
# Key Description
1 key Your api key
2 service Requested service id
3 link username/link of page/post
4 quantity Requested quantity



Place New Order


Parameters:
1 key Your api key
1 action add
2 service Service ID
3 link Link to page
4 quantity Needed quantity


Response on success:



{
  "status": "success",
  "order": 32
}
    

Response on fail:



{
  "error": "low balance",
  "order": 32
}
    

A list of possible errors:

● wrong address
● big quantity
● small quantity
● low balance



Track orders


Parameters:
1 key Your api key
1 action status
1 order order ID


Response on success:



{
  "order": "32",
  "status": "Pending",
  "charge": "0.0360",
  "start_count": "0",
  "remains": "0"
}
    
A list of possible statuses:

● Canceled
● Refunded
● Pending
● In progress
● Completed



Track multiple orders


Parameters:
1 key Your api key
1 action status
1 orders comma ( , ) separated order IDs


Response on success:



{
  "12": {
      "order": "12",
      "status": "processing",
      "charge": "1.2600",
      "start_count": "0",
      "remains": "0"
  },
  "2": "Incorrect order ID",
  "13": {
      "order": "13",
      "status": "pending",
      "charge": "0.6300",
      "start_count": "0",
      "remains": "0"
  }
}
    




Balance


Parameters:
1 key Your api key
1 action balance


Response on success:



{
  "status": "success",
  "balance": "0.03",
  "currency": "USD"
}
    

Warning
Success