Log in to see live SMM panel rates, add funds by UPI and place your first order in minutes.

Free SMM panel API for resellers

Every SmmFree account includes API access at no extra cost. It follows the standard SMM panel API format, so existing reseller scripts, child panels and store plugins work without custom work. Place orders, read live status and check your wallet balance from your own system.

One API key

Generated in Dashboard, Settings.

Standard format

POST form data, JSON response.

Rate limited

Stable under heavy polling.

Endpoint and authentication

All requests are HTTP POST with form encoded parameters. Your API key authenticates every call, so keep it server side and never expose it in browser code.

POST https://smmfree.com/api/v2
Content-Type: application/x-www-form-urlencoded

key=YOUR_API_KEY&action=balance

Available actions

ActionParametersWhat it does
serviceskey, action=servicesReturns the full service catalogue with service ID, name, rate per 1000, minimum and maximum.
addkey, action=add, service, link, quantityPlaces a new order and returns the order ID.
statuskey, action=status, orderReturns charge, start count, status and remains for one order.
balancekey, action=balanceReturns the current wallet balance and its currency.

Place an order

key=YOUR_API_KEY
action=add
service=1435
link=https://instagram.com/yourprofile
quantity=1000

// response
{ "order": 84291 }

Check order status

key=YOUR_API_KEY
action=status
order=84291

// response
{
  "charge": "42.50",
  "start_count": "1284",
  "status": "In progress",
  "remains": "310",
  "currency": "INR"
}

Good practice

Get your API key in a minute

Create an account, add funds with UPI, Paytm or PhonePe, and your key is waiting in Dashboard, Settings.

Create a free account

SMM panel API FAQs

Is the SmmFree SMM panel API free to use?

Yes. API access is included with every SmmFree account at no extra cost. You only pay for the orders you place, at the same wholesale rate shown on the service cards.

Where do I find my SMM panel API key?

Sign in and open Dashboard, then Settings. Your API key is shown there and can be regenerated at any time if you think it has leaked.

What is the API endpoint URL?

All requests go to https://smmfree.com/api/v2 as HTTP POST with form encoded parameters, which matches the standard SMM panel API format used by most reseller scripts.

Can I connect a child panel or my own store?

Yes. The add order, order status, services and balance actions are enough to run a child panel, a WooCommerce store or a custom checkout on top of SmmFree.

What happens if an order fails through the API?

The response returns an error field explaining the reason, and no balance is deducted for a rejected order. Partial deliveries are reported through the order status action with the remaining quantity.

Is there a rate limit on the API?

Yes, requests are rate limited per account to keep the panel stable. Poll order status at sensible intervals such as once per minute per order rather than in a tight loop.