API Documentation

HTTP MethodPOST
Response formatJSON
API URLhttps://www.smm.hqrentalpanel.com/api/v2
API KeyGet your API key on the Account page

Place new Order

Parameter Description
key Your API key
action add
service Service ID
link Link to page
quantity Needed quantity

Example response:

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

Order status

Parameter Description
key Your API key
action status
order Order ID

Example response:

{
  "order": 23501,
  "status": "Completed",
  "charge": "0.0360",
  "start_count": "1250",
  "remains": "0",
  "currency": "USD"
}

Multiple orders status

Parameter Description
key Your API key
action status
orders Order ids separated by comma

Example response:

{
  "23501": {
    "charge": "0.2750",
    "start_count": "3572",
    "status": "Partial",
    "remains": "157",
    "currency": "USD"
  },
  "23502": {
    "error": "Incorrect order ID"
  }
}

Services list

Parameter Description
key Your API key
action services

Example response:

[
  {
    "service": 1,
    "name": "Instagram Followers",
    "category": "Instagram",
    "type": "default",
    "rate": "0.90",
    "min": "50",
    "max": "10000",
    "refill": true,
    "dripfeed": true
  }
]

Refill

Parameter Description
key Your API key
action refill
order Order ID

Example response:

{
  "refill": "1"
}

Cancel

Parameter Description
key Your API key
action cancel
order Order ID

Example response:

{
  "cancel": "1"
}

Balance

Parameter Description
key Your API key
action balance

Example response:

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