DEV Community

Cover image for Instant Follower Boost With One cURL Command (HeySMMReseller API)
HeySmmReseller
HeySmmReseller

Posted on

Instant Follower Boost With One cURL Command (HeySMMReseller API)

Need a quick proof that your growth campaign will fire without touching a dashboard?

Here’s the entire flow in two terminal commands. Swap in your API key and target link—done.

Place the order

curl -X POST https://heysmmreseller.com/api/v2 \
-d "key=YOUR_API_KEY" \
-d "action=add" \
-d "service=1" \ # 1 = Followers
-d "link=YOUR_TARGET_URL" \
-d "quantity=100"

response;

{ "order": 23501 }

Check your balance
curl -X POST https://heysmmreseller.com/api/v2 \
-d "key=YOUR_API_KEY" \
-d "action=balance"

Cancel an order

curl -X POST https://heysmmreseller.com/api/v2 \
-d "key=YOUR_API_KEY" \
-d "action=cancel" \
-d "orders=23501"

That’s it. One HTTP request to boost a post, a second to confirm it landed.
Grab a free sandbox key—or scale it live—at https://heysmmreseller.com. 🚀

Top comments (0)