SMM API v2 Standard
Developer API Documentation
Connect your custom script, reseller panel, or automated CRM to our high-speed Indian server network.
API Endpoint URL
https://newsmm.in/api/v2
All API requests must be sent via HTTP POST with Content-Type: application/json or form-data.
Supported API Actions
1. Place New Order
action: "add"| Parameter | Type | Description |
|---|---|---|
| key | String | Your secret API key (from user profile) |
| action | String | Set to add |
| service | Integer | Service ID (e.g. 101) |
| link | String | Target social media link |
| quantity | Integer | Order amount |
Example Request (cURL):
curl -X POST https://newsmm.in/api/v2 \
-H "Content-Type: application/json" \
-d '{
"key": "YOUR_API_KEY_HERE",
"action": "add",
"service": 101,
"link": "https://www.instagram.com/p/C...",
"quantity": 1000
}'Example Success Response:
{
"order": 10452,
"charge": "49.00",
"currency": "INR",
"status": "pending"
}2. Check Order Status
action: "status"Pass order: <ORDER_ID> to get start_count, remaining count, and status (Pending, Processing, Completed, Partial, Canceled).
3. User Balance Query
action: "balance"Returns current account balance in Indian Rupee (₹) and currency code INR.