Developers

Build on the SMMNova API

A single JSON endpoint, four actions, and predictable responses. Base URL: https://api.smmnova.app/v2

POST

/v2 · action=services

Return the full service list with rates, minimum and maximum quantities.

{
  "key": "YOUR_API_KEY",
  "action": "services"
}
POST

/v2 · action=add

Create a new order for a given service ID and link.

{
  "key": "YOUR_API_KEY",
  "action": "add",
  "service": 142,
  "link": "https://instagram.com/p/xyz",
  "quantity": 1000
}
POST

/v2 · action=status

Check the status, charge, start count and remains of an order.

{
  "key": "YOUR_API_KEY",
  "action": "status",
  "order": 90210
}
POST

/v2 · action=balance

Read the current account balance and currency.

{
  "key": "YOUR_API_KEY",
  "action": "balance"
}