API 2.0

HTTP Method POST
API URL https://snakerspanel.com/api/v2
Response Format JSON

Method:add

Parameters Descriptions
key Your API key
action add
service ID of package
link Link to page
quantity Needed quantity

Success Response:

{
  "order":"23501"
}

Method:status

Parameters Descriptions
key Your API key
action status
order Order ID

Success Response:

{
    "charge": "0.00000",
    "start_count": "0",
    "status": "Cancelled",
    "remains": "10",
    "currency": "USD"
}

Method:balance

Parameters Descriptions
key Your API key
action balance

Example Response:

{
  "balance": "100.78",
  "currency": "USD"
}

Method:refill

Parameters Descriptions
key Your API key
action Method Name
order Order ID

Success Response:

{
    "success": "Your order will be refill asap. Thank you for patience",
    "refill": 12345
}

Method:refill_status

Parameters Descriptions
key Your API key
action Method Name
refill Refill ID

Success Response:

{
    "status": "Completed"
}    

Method:services

Parameters Descriptions
key Your API key
action services

Example Response:

[
    {
        "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"
    }
]
Example of PHP Code