API Documentation

HTTP Method:
POST
API URL:
https://socialbooster.me/api/v1
API Key:
Register to get an API key
Response format:
JSON
Balance
Parameters
Description
key
Your API key
action
balance
Example response:
{
    "data": {
        "balance": 1.29,
        "currency": "USD"
    },
    "error": null
}
Services List
Parameters
Description
key
Your API key
action
services
Example response:
{
    "data": [
        {
            "service": 1,
            "name": "First packet",
            "type": "Default",
            "category": "Instagram / Followers",
            "rate": 0.005828,
            "min": 100,
            "max": 10000
        },
        {
            "service": 2,
            "name": "New packet",
            "type": "Default",
            "category": "Instagram / Followers",
            "rate": 0.000767,
            "min": 501,
            "max": 10000
        }
    ],
    "error": null
}
Add Order
Parameters
Description
key
Your API key
action
add
service
Service ID
link
Link to page
quantity
Needed quantity
Example response:
{
    "data": {
        "order": "VtyUgOJ"
    },
    "error": null
}
Order Status
Parameters
Description
key
Your API key
action
status
order
Order ID
Example response:
{
    "data": {
        "status": "In progress"
    },
    "error": null
}
Multiple orders status
Parameters
Description
key
Your API key
action
status
orders
Order IDs separated by comma
Example response:
{
    "data": {
        "VtyUgOJ": {
            "status": "In progress"
        },
        "VtyUgO7": {
            "error": "Incorrect order ID"
        }
    },
    "error": null
}