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
HTTP POST Only

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"
ParameterTypeDescription
keyStringYour secret API key (from user profile)
actionStringSet to add
serviceIntegerService ID (e.g. 101)
linkStringTarget social media link
quantityIntegerOrder 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.