Socialmino

API Documentation

Connect your panel to ours via API.

API URL

http://localhost:8000/api

Method: POST

Place Order (Add)

Parameter Description
key Your API Key
action Set to add
service Service ID (integer)
link Link to target (e.g., Post URL)
quantity Amount needed

Example Response

{
    "order": 12345,
    "charge": 0.50,
    "balance": 99.50
}
                

Order Status

Parameters: key, action=status, order

Example Response

{
    "status": "Completed",
    "charge": 0.50,
    "start_count": 100,
    "remains": 0,
    "currency": "USD"
}
                

Your API Key

Login to view
Regenerate Key

Code Example (PHP)

$api = new Api();
$api->order([
    'service' => 1,
    'link' => 'http://...',
    'quantity' => 1000
]);
Download PHP Class