Developer Tools
API & Integrations
Build your own SMM panel, automate orders, or import services from top providers. Full REST API with real-time webhooks.
Your API Key
Keep your API key private. Never share it publicly.
Endpoints
POST
/api/v2/order
Create a new order
GET
/api/v2/order/:id
Get order status
GET
/api/v2/services
List all services
GET
/api/v2/balance
Check balance
POST
/api/v2/refill
Request refill
POST
/api/v2/cancel
Cancel an order
GET
/api/v2/orders
List all orders
POST
/api/v2/multi
Create multiple orders
API Features
REST JSON API (v2)
Real-time order status
Webhook notifications
Multi-order support
Auto-refill triggers
Rate limit: 100 req/min
curl -X POST https://novasmm.com/api/v2/order \
-H "Content-Type: application/json" \
-d '{
"key": "YOUR_API_KEY",
"action": "add",
"service": 1,
"link": "https://instagram.com/username",
"quantity": 1000
}'Response Example
{
"order": 285721,
"status": "Processing",
"charge": "0.90",
"currency": "USD",
"start_count": 14520,
"remains": 1000,
"created_at": "2026-03-26T10:30:00Z"
}Webhook Notifications
Get real-time updates when order status changes.
POSTorder.completed
POSTorder.partial
POSTorder.cancelled