API Documentation
- Home
- API Documentation
Create order
List of orders
List of services
Account Information
POST
| Parameters | Default value | Description | Required |
|---|---|---|---|
object_id | NULL | Link or Account UID | * |
provider | NULL | Service name to buy | * |
servers | NULL | Server to buy | * |
quantity | NULL | Quantity to buy | * |
note | NULL | Note for order | |
reaction | Like | For likes with reactions | |
time_view | 30 | For video views | |
minute_view | 30 | For live stream viewers |
Sample code:
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://tanglikegiare.top/en/api/services/orders',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"object_id": "https://www.facebook.com/dvmxh.tinhr",
"provider": "facebook",
"note": null,
"servers": 14,
"quantity": 100
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json',
'Authorization: Bearer api_token'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
Response:
{
"status": true,
"message": "Service purchased successfully.",
"data": {
"transaction_code": "QTJZCKYH",
"provider": "facebook",
"object_id": "100069205102903",
"server": 14,
"quantity": "100",
"start_quantity": "",
"buffed_quantity": "0",
"price": "2.975",
"total_payment": "297.5",
"status": "pending",
"purchase_time": "2024-01-06T11:51:36.000000Z"
}
}
GET
| Parameters | Description | Allowed values |
|---|---|---|
transaction_code | Filter by transaction code | "6SWFYGOF" or multiple codes ["6SWFYGOF", "CIH4PBYR"] |
provider | Filter by provider | Example: facebook |
status | Filter by status | pending, processing, in progress, completed, partial, canceled, refunded |
object_id | Filter by ID | Example: 124124 |
limit | Limit returned records | Example returns 5 records: 5 |
Sample code:
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://tanglikegiare.top/en/api/services/orders/list',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'GET',
CURLOPT_POSTFIELDS =>'{
"transaction_code": ["6SWFYGOF", "CIH4PBYR"],
"limit": 3
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json',
'Authorization: Bearer api_token'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
Response:
{
"status": true,
"message": "Successfully fetched order information.",
"data": [
{
"transaction_code": "6SWFYGOF",
"server": 23,
"provider": "facebook",
"service_name": "Increase like",
"object_id": "6885866094478",
"quantity": "50",
"start_quantity": "",
"buffed_quantity": "0",
"note": null,
"price": "2.9",
"payment": "145",
"status": "pending",
"created_at": "2024-01-18T04:59:56.000000Z"
},
{
"transaction_code": "CIH4PBYR",
"server": 23,
"provider": "facebook",
"service_name": "Increase like",
"object_id": "6885866094478",
"quantity": "50",
"start_quantity": "",
"buffed_quantity": "0",
"note": null,
"price": "2.9",
"payment": "145",
"status": "pending",
"created_at": "2024-01-18T04:51:55.000000Z"
}
]
}
GET
| Parameters | Description |
|---|---|
provider | Filter by provider |
status | Filter by status, 0 is hidden, 1 is visible |
limit | Limit returned records |
Sample code:
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://tanglikegiare.top/en/api/services/list',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'GET',
CURLOPT_POSTFIELDS =>'{
"provider": "facebook",
"status": 1,
"limit": 3
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json',
'Authorization: Bearer api_token'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
Response:
{
"status": true,
"message": "Successfully fetched service price list.",
"data": [
{
"server": 11,
"name": "Increase sub using page pro5",
"info": "Global exclusive",
"provider": "facebook",
"price": 2.26,
"min": "1000",
"max": "100000000",
"status": "1"
},
{
"server": 12,
"name": "Cheap like increase",
"info": "No order congestion, fast delivery",
"provider": "facebook",
"price": "5.2",
"min": "100",
"max": "500000",
"status": "1"
},
]
}
GET
Sample code:
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://tanglikegiare.top/en/api/user',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'GET',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json',
'Authorization: Bearer api_token'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
Response:
{
"status": true,
"message": "Successfully fetched account information.",
"data": {
"username": "admin",
"email": "[email protected]",
"money": "492362.5",
"point": "6710840"
}
}




