API v2 Documentation
Easily integrate SMM services into your system
Endpoint
https://sieulike.vn/api/v2
📝 Content-Type: application/x-www-form-urlencoded
Available APIs
💰 Check Balance
Parameters
key |
Required | Your API key |
action |
Required | balance |
Example
POST https://sieulike.vn/api/v2
key=your_api_key&action=balance
{
"balance": "100000.00",
"currency": "VND"
}
📋 Services List
Parameters
key |
Required | Your API key |
action |
Required | services |
Example
POST https://sieulike.vn/api/v2
key=your_api_key&action=services
[
{
"service": 1,
"name": "TikTok - Tim - Nước ngoài 🌎 - BH 30 ngày",
"type": "Default",
"rate": "3.7000",
"min": 20,
"max": 200000,
"dripfeed": false,
"refill": true,
"days_refill": 30,
"cancel": false,
"avg_time_min": 5,
"status": "normal",
"category": "TikTok - Tim",
"description": "...",
"priority": false
},
...
]
avg_time_min— Estimated time (in minutes) to complete 1000 units. Automatically inflated when the service is slow/overloaded.status— Service operating status:normal— Operating normallyslow— Running slow, delivery time increased by ~1 dayoverload— Temporarily overloaded, delivery time increased by ~2 days
priority— Priority service flag:true— Recommend placing at top of your list — always runs well, rarely has issues. However price may change significantly — requires cron price check at least every 1 hour.false— Stable pricing, rarely changes. Good to offer customers more speed/price choices.
🛒 Create Order
For services with type = "Default" (Like, Follow, View, ...)
Parameters
key |
Required | Your API key |
action |
Required | add |
service |
Required | Service ID |
link |
Required | Order link |
quantity |
Required | Quantity |
Example
POST https://sieulike.vn/api/v2
key=your_api_key&action=add&service=1&link=https://tiktok.com/@user/video/123&quantity=1000
{
"order": 12345
}
{
"error": "Insufficient balance"
}
For services with type = "Custom Comments". Send list of custom comments, one per line.
Parameters
key |
Required | Your API key |
action |
Required | add |
service |
Required | Service ID (type = Custom Comments) |
link |
Required | Post link |
comments |
Required | Comments list (one per line, separated by \n) |
Example
POST https://sieulike.vn/api/v2
key=your_api_key&action=add&service=50&link=https://instagram.com/p/ABC123&comments=Bài viết hay quá!
Cảm ơn bạn đã chia sẻ
Tuyệt vời 👍
{
"order": 12345
}
Automatically create multiple orders on schedule. Only for services with dripfeed = true.
Parameters
key |
Required | Your API key |
action |
Required | add |
service |
Required | Service ID (must have dripfeed = true) |
link |
Required | Order link |
quantity |
Required | Quantity per order |
runs |
Required | Number of orders (≥ 2 to activate drip feed) |
interval |
Required | Delay between orders (minutes, minimum 1) |
Example
POST https://sieulike.vn/api/v2
key=your_api_key&action=add&service=1&link=https://tiktok.com/@user/video/123&quantity=100&runs=5&interval=30
{
"order": 12345
}
⚠️ Possible Errors
This service does not support drip feed |
Service does not support drip feed (dripfeed = false) |
Runs must be at least 1 |
Number of orders must be at least 1 |
Interval must be at least 1 minute |
Delay must be at least 1 minute |
Total time ... cannot exceed 1440 minutes |
Total time exceeds 24 hours |
For services with type = "Comment Likes". `username` is mandatory.
Parameters
key |
Required | Your API key |
action |
Required | add |
service |
Required | Service ID (type = Comment Likes) |
link |
Required | Order link |
quantity |
Required | Quantity |
username |
Required | Commenter username |
Example
POST https://sieulike.vn/api/v2
key=your_api_key&action=add&service=60&link=https://tiktok.com/@user/video/123&quantity=100&username=commenter_name
{
"order": 12345
}
📊 Order Status
Parameters
key | Required | Your API key |
action | Required | status |
order | Required | Order ID |
Example
POST https://sieulike.vn/api/v2
key=your_api_key&action=status&order=12345{
"charge": "1000.00",
"start_count": "100",
"status": "In progress",
"remains": "500",
"currency": "VND"
}Check status of multiple orders at once (max 200 orders).
Parameters
key | Required | Your API key |
action | Required | status |
orders | Required | List of IDs, comma separated (max 200) |
Example
POST https://sieulike.vn/api/v2
key=your_api_key&action=status&orders=12345,12346,12347{
"12345": {
"charge": "1000.00",
"start_count": "100",
"status": "Completed",
"remains": "0",
"currency": "VND"
},
"12346": {
"charge": "500.00",
"start_count": "50",
"status": "In progress",
"remains": "250",
"currency": "VND"
},
"12347": {
"error": "Order not found"
}
}When checking drip feed order status, the response has a different structure.
{
"status": "Active",
"runs": "3",
"orders": ["12346", "12347", "12348"]
}Check status of time-based VIP packages. Same parameters as single/multiple orders, response includes extra package info.
Parameters
key | Required | Your API key |
action | Required | status |
order | Required | Order ID (or use orders for multiple) |
Example
POST https://sieulike.vn/api/v2
key=your_api_key&action=status&order=12345{
"charge": "500000.00",
"start_count": "0",
"status": "In progress",
"remains": "0",
"currency": "VND",
"daily_Post_Limit": 5,
"daily_Progress": 2,
"days_Left": 25
}Check status of post-based VIP packages. Same parameters as single/multiple orders, response includes extra package info.
Parameters
key | Required | Your API key |
action | Required | status |
order | Required | Order ID (or use orders for multiple) |
Example
POST https://sieulike.vn/api/v2
key=your_api_key&action=status&order=12346{
"charge": "300000.00",
"start_count": "0",
"status": "In progress",
"remains": "0",
"currency": "VND",
"total_posts": 30,
"completed_posts": 12,
"days_Left": 18
}🔄 Request Refill
- Order must have
refill: true(supports warranty). - Warranty period must still be valid (from
updated_at). - No pending or running refill request.
- On success,
refillwill equal the order ID you sent.
Parameters
key | Required | Your API key |
action | Required | refill |
order | Required | Order ID to refill |
Example
POST https://sieulike.vn/api/v2
key=your_api_key&action=refill&order=12{
"refill": 12
}{
"error": "Warranty period has expired"
}Parameters
key | Required | Your API key |
action | Required | refill |
orders | Required | List of IDs, comma separated (max 100) |
Example
POST https://sieulike.vn/api/v2
key=your_api_key&action=refill&orders=15,21,3[
{
"order": 15,
"refill": 15
},
{
"order": 21,
"refill": 21
},
{
"order": 3,
"refill": {
"error": "Incorrect order ID"
}
}
]⚠️ Possible Errors
Incorrect order ID | Order ID does not exist or does not belong to you |
This order does not support refill | This service does not support warranty |
Refill request already submitted | Refill request was already submitted |
Refill is currently running | Refill is currently in progress |
Refill request was rejected | Refill request was previously rejected |
Warranty period has expired | Warranty period has expired |
🔍 Refill Status
Parameters
key | Required | Your API key |
action | Required | refill_status |
refill | Required | Refill ID (the Order ID that was submitted for refill) |
Example
POST https://sieulike.vn/api/v2
key=your_api_key&action=refill_status&refill=12{
"status": "Completed"
}{
"error": "Refill not found"
}Parameters
key | Required | Your API key |
action | Required | refill_status |
refills | Required | List of Refill IDs, comma separated (max 100) |
Example
POST https://sieulike.vn/api/v2
key=your_api_key&action=refill_status&refills=12,21,3[
{
"refill": 12,
"status": "Completed"
},
{
"refill": 21,
"status": "Rejected"
},
{
"refill": 3,
"status": {
"error": "Refill not found"
}
}
]Pending— Refill request submitted, awaiting processingIn progress— Refill is in progressCompleted— Refill completed successfullyRejected— Refill request was rejected
❌ Cancel Order
- On success,
cancelvalue will equal the order ID you sent. - On error,
cancelwill contain{"error": "..."}object. - Only orders with
cancel: trueand Pending / In progress / Processing status can be cancelled.
Parameters
key | Required | Your API key |
action | Required | cancel |
order | Required | Order ID to cancel |
Example
POST https://sieulike.vn/api/v2
key=your_api_key&action=cancel&order=14{
"cancel": 14
}{
"error": "This order cannot be cancelled"
}Parameters
key | Required | Your API key |
action | Required | cancel |
orders | Required | List of IDs, comma separated (max 100) |
Example
POST https://sieulike.vn/api/v2
key=your_api_key&action=cancel&orders=14,15,16[
{
"order": 14,
"cancel": 14
},
{
"order": 15,
"cancel": 15
},
{
"order": 16,
"cancel": {
"error": "Incorrect order ID"
}
}
]⚠️ Possible Errors
Incorrect order ID | Order ID does not exist or does not belong to you |
This order cannot be cancelled | This service does not support cancellation |
The cancellation request was submitted earlier | Cancellation request was already submitted |
Order cannot be cancelled at this status | Order cannot be cancelled at current status |