API Docs

  • HTTP MethodPOST
  • API URLhttp://smm.vc/api/v2
  • Response formatJSON
  • Example CodeExample of PHP code

Add order

Parameters Description
api_token Your API key
action add
package Package ID
link Link to page
quantity Needed quantity
runs (optional) Runs to deliver
interval (optional) Interval in minutes

Example response

{
  "order":"23501"
}
                            

Add order

Parameters Description
api_token Your API key
action add
package Package ID
link Link to page
comments Comments list separated by \r\n or \n

Example response

{
  "order":"23501"
}
           

Order status

PARAMETERS DESCRIPTION
api_token Your API key
action status
order Order ID

Example response

{
  "status": "Completed",
  "start_counter": "600",
  "remains": "600"
}                

Service list

PARAMETERS DESCRIPTION
api_token Your API key
action packages

Example response

[
  {
    "service": 1,
    "name": "Instagram Followers",
    "type": "Default",
    "category": "First Category",
    "rate": "0.30",
    "min": "50",
    "max": "10000"
  },
  {
    "service": 2,
    "name": "Instagram Likes",
    "type": "Default",
    "category": "Second Category",
    "rate": "0.03",
    "min": "50",
    "max": "1000"
  },
  {
    "service": 3,
    "name": "Facebook Custom Comments",
    "type": "Custom Comments",
    "category": "Third Category",
    "rate": "8",
    "min": "10",
    "max": "1500"
  }
]

 

User balance

PARAMETERS DESCRIPTION
api_token Your API key
action balance

Example response

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