Dành cho nhà phát triển
Tài liệu API
Like333 cung cấp API chuẩn SMM v2. Tạo khoá API trong mục Bảng điều khiển → API, sau đó gọi tới endpoint:
POST https://like333.vn/api/v2
Content-Type: application/x-www-form-urlencodedCác hành động
action=services
Danh sách dịch vụ
key, action=servicesaction=add
Tạo đơn mới
key, action=add, service, link, quantityaction=status
Trạng thái đơn
key, action=status, orderaction=balance
Số dư tài khoản
key, action=balanceVí dụ: Tạo đơn
curl -X POST https://like333.vn/api/v2 \
-d "key=YOUR_API_KEY" \
-d "action=add" \
-d "service=SERVICE_ID" \
-d "link=https://tiktok.com/@user/video/123" \
-d "quantity=1000"
# Phản hồi
{ "order": "clxxxxxx" }Ví dụ: Kiểm tra trạng thái
curl -X POST https://like333.vn/api/v2 \
-d "key=YOUR_API_KEY" \
-d "action=status" \
-d "order=ORDER_ID"
# Phản hồi
{
"charge": 18000,
"start_count": 1240,
"status": "COMPLETED",
"remains": 0,
"currency": "VND"
}