API Documentation
HTTP Method POST
API URL https://boostifypanel.xyz/api/v2
Return Format JSON
Service List
Parameters Explanation
key Your API Key
action services
Sample Return
[
    {
        "service": 1,
        "name": "Followers",
        "type": "Default",
        "category": "First Category",
        "rate": "0.90",
        "min": "50",
        "max": "10000"
    },
    {
        "service": 2,
        "name": "Comments",
        "type": "Custom Comments",
        "category": "Second Category",
        "rate": "8",
        "min": "10",
        "max": "1500"
    }
]
Add New Order
Parameter Explanation
key Your API Key
action add
service Service ID
link Link to the page / post
quantity Quantity needed
runs (optional) Runs to deliver (For drip-feed)
interval (optional) Interval in minutes (For drip-feed)
Sample Return
{
    "order": 23501
}
Check Order Status
Parameter Explanation
key Your API Key
action status
order Order ID to check
Sample Return
{
    "charge": "0.27819",
    "start_count": "3572",
    "status": "Partial",
    "remains": "157",
    "currency": "USD"
}
Check User Balance
Parameter Explanation
key Your API Key
action balance
Sample Return
{
    "balance": "100.84292",
    "currency": "USD"
}
Download Sample PHP File