...
API Dokümantasyonu
HTTP MethodPOST
API URLhttps://www.buy.360social.org/api/v2
API KeyAPI Anahtarınızı Ayarlar sayfasından alabilirsiniz.
Response formatJSON
Service list
ParametersDescription
keyYour API key
actionservices
Example response:
[
    {
        "service": 1,
        "name": "Followers",
        "type": "Default",
        "category": "First Category",
        "rate": "0.90",
        "min": "50",
        "max": "10000",
        "refill": true,
        "cancel": true
    },
    {
        "service": 2,
        "name": "Comments",
        "type": "Custom Comments",
        "category": "Second Category",
        "rate": "8",
        "min": "10",
        "max": "1500",
        "refill": false,
        "cancel": true
    }
]
Add order
ParametersDescription
keyYour API key
actionadd
serviceService ID
linkLink to page
quantityNeeded quantity
runs (optional)Runs to deliver
interval (optional)Interval in minutes
Example response:
{
    "order": 23501
}
Order status
ParametersDescription
keyYour API key
actionstatus
orderOrder ID
Example response:
{
    "charge": "0.27819",
    "start_count": "3572",
    "status": "Partial",
    "remains": "157",
    "currency": "USD"
}
Multiple orders status
ParametersDescription
keyYour API key
actionstatus
ordersOrder IDs (separated by a comma, up to 100 IDs)
Example response:
{
    "1": {
        "charge": "0.27819",
        "start_count": "3572",
        "status": "Partial",
        "remains": "157",
        "currency": "USD"
    },
    "10": {
        "error": "Incorrect order ID"
    },
    "100": {
        "charge": "1.44219",
        "start_count": "234",
        "status": "In progress",
        "remains": "10",
        "currency": "USD"
    }
}
Create refill
ParametersDescription
keyYour API key
actionrefill
orderOrder ID
Example response:
{
    "refill": "1"
}
Create multiple refill
ParametersDescription
keyYour API key
actionrefill
ordersOrder IDs (separated by a comma)
Example response:
[
    {
        "order": 1,
        "refill": 1
    },
    {
        "order": 2,
        "refill": 2
    },
    {
        "order": 3,
        "refill": {
            "error": "Incorrect order ID"
        }
    }
]
Get refill status
ParametersDescription
keyYour API key
actionrefill_status
refillRefill ID
Example response:
{
    "status": "Completed"
}
Get multiple refill status
ParametersDescription
keyYour API key
actionrefill_status
refillsRefill IDs (separated by a comma)
Example response:
[
    {
        "refill": 1,
        "status": "Completed"
    },
    {
        "refill": 2,
        "status": "Rejected"
    },
    {
        "refill": 3,
        "status": {
            "error": "Refill not found"
        }
    }
]
Create cancel
ParametersDescription
keyYour API key
actioncancel
ordersOrder IDs (separated by a comma)
Example response:
[
    {
        "order": 9,
        "cancel": {
            "error": "Incorrect order ID"
        }
    },
    {
        "order": 2,
        "cancel": 1
    }
]
User balance
ParametersDescription
keyYour API key
actionbalance
Example response:
{
    "balance": "100.84",
    "currency": "USD"
}
<?php
class Api
{
    public $api_url = 'https://www.buy.360social.org/api/v2';
    public $api_key = '';

    public function order($data) {
        $post = array_merge(['key' => $this->api_key, 'action' => 'add'], $data);
        return json_decode((string)$this->connect($post));
    }
    public function status($order_id) {
        return json_decode($this->connect(['key' => $this->api_key, 'action' => 'status', 'order' => $order_id]));
    }
    public function services() {
        return json_decode($this->connect(['key' => $this->api_key, 'action' => 'services']));
    }
    public function balance() {
        return json_decode($this->connect(['key' => $this->api_key, 'action' => 'balance']));
    }
    private function connect($post) {
        $_post = [];
        if (is_array($post)) { foreach ($post as $name => $value) { $_post[] = $name . '=' . urlencode($value); } }
        $ch = curl_init($this->api_url);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
        curl_setopt($ch, CURLOPT_POST, 1);
        curl_setopt($ch, CURLOPT_HEADER, 0);
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
        curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
        curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
        if (is_array($post)) { curl_setopt($ch, CURLOPT_POSTFIELDS, join('&', $_post)); }
        curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)');
        $result = curl_exec($ch);
        if (curl_errno($ch) != 0 && empty($result)) { $result = false; }
        curl_close($ch);
        return $result;
    }
}
?>