VICTUS SMM • API

Powerful API v2

Automate orders, fetch services, and monitor statuses with a clean JSON interface.

API

HTTP MethodPOST
API URLhttps://victussmm.in/api/v2
Return formatJSON

Service List

ParameterExplanation
keyYour API Key
actionservices

Sample return

[
  {
    "service": 1,
    "name": "Followers",
    "type": "Default",
    "category": "First Category",
    "rate": "0.90",
    "min": "50",
    "max": "10000"
  },
  {
    "service": 2,
    "name": "Comments",
    "type": "Custom Comments",
    "category": "Second Category",
    "rate": "8",
    "min": "10",
    "max": "1500"
  }
]

New order

ParameterExplanation
keyYour API Key
actionadd
serviceService ID
linkService connection
quantityQuantity
runs (optional)Runs to deliver
interval (optional)Interval in minutes

Sample return

{
  "order": 23501
}

Order status

ParameterExplanation
keyYour API Key
actionstatus
orderOrder ID

Sample return

{
  "charge": "0.27819",
  "start_count": "3572",
  "status": "Partial",
  "remains": "157",
  "currency": "USD"
}

User balance

ParameterExplanation
keyYour API Key
actionbalance

Sample return

{
  "balance": "100.84292",
  "currency": "USD"
}
Sample PHP file