API Documentation
Integrate our services into your own panel or application
POST
HTTP Method
API URL
https://socialskyrocket.com/api/v2
API KEY
Get on the Account Page
Response format
JSON
New Order
| Parameter | Description |
|---|---|
| key | Your API key |
| action | add |
| service | Service ID |
| link | Link to page |
| quantity | Needed quantity |
| runs (optional) | Runs to deliver |
| interval (optional) | Interval in minutes |
Example response:
{"status":"success","order":12}
Status Order
| Parameter | Description |
|---|---|
| key | Your API key |
| action | status |
| order | Order ID |
Example response:
{
"status": "In progress",
"charge": "0.5000",
"start_count": "2130",
"remains": "0"
}
Multiple orders status
| Parameter | Description |
|---|---|
| key | Your API key |
| action | status |
| orders | Order IDs (comma separated) |
Example response:
{
"1": {"status":"Completed","charge":"0.50"},
"7": {"error":"Incorrect order ID"}
}
Services Lists
| Parameter | Description |
|---|---|
| key | Your API key |
| action | services |
Example response:
[
{"service":"1","name":"Followers","rate":"7.00","min":"50","max":"10000"}
]
Balance
| Parameter | Description |
|---|---|
| key | Your API key |
| action | balance |
Example response:
{"status":"success","balance":"9.07","currency":"INR"}