API documentation
Automate orders with our REST API — POST requests, JSON responses.
Your credentials
All requests are POST with
key + action parameters. Responses are JSON.Methods
| Action | Parameters | Description |
|---|---|---|
services | key, action=services | List all services |
add | key, action=add, service, link, quantity | Place an order |
add (drip) | …, runs, interval | Drip-feed order |
status | key, action=status, order | Single order status |
status (multi) | key, action=status, orders=1,2,3 | Multiple order status |
refill | key, action=refill, order | Request a refill |
balance | key, action=balance | Check balance |
Examples
curl -X POST https://socialstreampanel.com/api/v2 \
-d "key=YOUR_API_KEY" \
-d "action=add" \
-d "service=123" \
-d "link=https://instagram.com/p/abc" \
-d "quantity=1000"
Response:
{"order": 99999} — then poll action=status for progress.