SMMWAR API 🔌 Automate Orders with One Access Key

API

Run your whole panel on autopilot. List services, check your balance and fire off orders straight from your own code — with one access key 🔌 and plain JSON in return. No login, no password, no nonsense.

SMMWAR API — automate your orders

🔑 Sign in to get your personal API key.

Endpoint

POST https://smmwar.com/api/v2

Send a regular form post. key and action are always required.

Balance

action balance

returns => {"balance":"12.34","currency":"USD"}

Services

action services

Returns an array of currently active services. Use the numeric service value when ordering.

item => {"service":1,"name":"Instagram followers [fast]","type":"social","category":"Instagram","rate":"0.0500","min":10,"max":100000000}

Add Order

action add + service, link, quantity

Paid instantly from balance — top up first. Quantity must be at least the service minimum.

returns => {"order":345}

Order Status

action status + order

returns => {"charge":"5.00","currency":"USD","status":"In progress","remains":"42","start_count":"0"}

remains is what's still left to deliver — drops from quantity down to 0 as the order fills.

Many at once => orders (comma-separated, up to 100)

returns => {"345":{...},"346":{...}}

Statuses

Pending => paid, waiting to be processed

In progress => being delivered

Completed => finished

Canceled => not processed

Refunded => amount returned to balance

Errors

On failure => {"error":"reason"}

Invalid API key

Incorrect service ID

Not enough funds on balance

Quantity is less than the minimum

Example

curl -d "key=YOUR_KEY&action=add&service=12&link=https://instagram.com/example&quantity=100" https://smmwar.com/api/v2