Tài liệu API cho lập trình viên
Tích hợp các dịch vụ SMM, mua proxy và các chiến dịch traffic trực tiếp vào ứng dụng của bạn với chuẩn API JSON.
https://mualike.pro/api/v2
Lấy danh sách dịch vụ SMM
Lấy danh sách chi tiết của tất cả các dịch vụ SMM sẵn có cho tài khoản của bạn, bao gồm giá, giới hạn tối thiểu, tối đa và các thuộc tính.
| Tham số | Kiểu dữ liệu & Quy tắc | Mô tả |
|---|---|---|
| key | string bắt buộc | Your unique API Key authentication token. |
| action | string bắt buộc | Set parameter value to "services". |
| lang | string không bắt buộc | Service name language. Allowed values: "vi", "en". Default is "vi". |
[
{
"service": 17374,
"name": "Shopee Follow | VietNam",
"type": "Default",
"category": "Follow Shop",
"platform": "Shopee",
"rate": 5.4638,
"min": 10,
"max": 10000,
"refill": false,
"cancel": true,
"description": "Real users, speed: 500-1k/day",
"stable": "stable",
"status": "active"
},
{
"service": 17493,
"name": "Lazada Follow",
"type": "Default",
"category": "Follow Lazada",
"platform": "Lazada",
"rate": 10.9275,
"min": 10,
"max": 10000,
"refill": true,
"cancel": true,
"description": "Follow Global accounts",
"stable": "beta",
"status": "inactive"
}
]
Kiểm tra số dư tài khoản
Truy vấn số dư ví tài khoản hiện tại và đơn vị tiền tệ cấu hình trên hệ thống.
| Tham số | Kiểu dữ liệu & Quy tắc | Mô tả |
|---|---|---|
| key | string bắt buộc | Your unique API Key authentication token. |
| action | string bắt buộc | Set parameter value to "balance". |
{
"balance": "343.22",
"currency": "VND"
}
Tạo đơn hàng SMM
Khởi tạo một đơn hàng marketing SMM mới. Các tham số bắt buộc sẽ thay đổi tùy theo loại dịch vụ tương ứng.
| Tham số | Kiểu dữ liệu & Quy tắc | Mô tả |
|---|---|---|
| key | string bắt buộc | Your unique API Key. |
| action | string bắt buộc | Set parameter value to "add". |
| service | integer bắt buộc | The SMM Service ID obtained from the services list. |
| link | string bắt buộc | Target link URL (Profile, post, channel, group, video, etc). |
| quantity | integer bắt buộc | The quantity of views, followers, likes, etc. to buy. |
{
"order": 99999
}
Lấy trạng thái đơn hàng
Truy vấn trạng thái, chi phí, số lượng bắt đầu và tiến trình còn lại của một đơn hàng cụ thể.
| Tham số | Kiểu dữ liệu & Quy tắc | Mô tả |
|---|---|---|
| key | string bắt buộc | Your unique API Key. |
| action | string bắt buộc | Set to "status". |
| order | integer bắt buộc | Target Order ID. |
{
"charge": "2.5",
"start_count": "168",
"status": "Completed",
"remains": "0"
}
Lấy trạng thái nhiều đơn hàng
Truy xuất chi tiết trạng thái cho nhiều đơn hàng cùng lúc (tối đa 100 ID mỗi lần).
| Tham số | Kiểu dữ liệu & Quy tắc | Mô tả |
|---|---|---|
| key | string bắt buộc | Your unique API Key. |
| action | string bắt buộc | Set to "status". |
| orders | string bắt buộc | Comma-separated list of Order IDs (e.g. "123,456,789"). |
{
"123": {
"charge": "0.27819",
"start_count": "3572",
"status": "Partial",
"remains": "157"
},
"456": {
"error": "Incorrect order ID"
},
"789": {
"charge": "1.44219",
"start_count": "234",
"status": "In progress",
"remains": "10"
}
}
Yêu cầu bảo hành đơn hàng
Kích hoạt dịch vụ bảo hành cho một đơn hàng đã hoàn tất bị tụt giảm số lượng (nếu máy chủ dịch vụ có hỗ trợ).
| Tham số | Kiểu dữ liệu & Quy tắc | Mô tả |
|---|---|---|
| key | string bắt buộc | Your unique API Key. |
| action | string bắt buộc | Set to "refill". |
| order | integer bắt buộc | Target Order ID to refill. |
{
"refill": "1298"
}
Yêu cầu bảo hành nhiều đơn hàng
Gửi yêu cầu bảo hành cho nhiều đơn hàng cùng một lúc.
| Tham số | Kiểu dữ liệu & Quy tắc | Mô tả |
|---|---|---|
| key | string bắt buộc | Your unique API Key. |
| action | string bắt buộc | Set to "refill". |
| orders | string bắt buộc | Comma-separated list of Order IDs. |
[
{
"order": 123,
"refill": 1299
},
{
"order": 456,
"refill": 1300
},
{
"order": 789,
"refill": {
"error": "Incorrect order ID"
}
}
]
Kiểm tra trạng thái yêu cầu bảo hành
Kiểm tra trạng thái tiến trình của một tác vụ bảo hành đã tạo trước đó.
| Tham số | Kiểu dữ liệu & Quy tắc | Mô tả |
|---|---|---|
| key | string bắt buộc | Your unique API Key. |
| action | string bắt buộc | Set to "refill_status". |
| refill | integer bắt buộc | Target Refill ID (e.g. 1298). |
{
"status": "Completed"
}
Kiểm tra trạng thái nhiều yêu cầu bảo hành
Kiểm tra trạng thái hiện tại của nhiều tác vụ bảo hành cùng lúc.
| Tham số | Kiểu dữ liệu & Quy tắc | Mô tả |
|---|---|---|
| key | string bắt buộc | Your unique API Key. |
| action | string bắt buộc | Set to "refill_status". |
| refills | string bắt buộc | Comma-separated list of Refill IDs. |
[
{
"refill": 1299,
"status": "Completed"
},
{
"refill": 1300,
"status": "Rejected"
}
]
Yêu cầu hủy đơn hàng
Gửi yêu cầu hủy cho các đơn hàng đang chạy (nếu máy chủ tương ứng có hỗ trợ tính năng hủy).
| Tham số | Kiểu dữ liệu & Quy tắc | Mô tả |
|---|---|---|
| key | string bắt buộc | Your unique API Key. |
| action | string bắt buộc | Set to "cancel". |
| orders | string bắt buộc | Comma-separated list of target Order IDs. |
[
{
"order": 123,
"cancel": {
"error": "Order cannot be cancelled"
}
},
{
"order": 456,
"cancel": 1
}
]
Mua / Thuê Proxy
Thuê các proxy tĩnh IPv4 riêng tư, gói proxy tĩnh hoặc proxy xoay.
| Tham số | Kiểu dữ liệu & Quy tắc | Mô tả |
|---|---|---|
| key | string bắt buộc | Your unique API Key. |
| action | string bắt buộc | Set to "buy_proxy". |
| proxy | string bắt buộc | Specify type: "v4static", "v4package", or "v4rotate". |
| type | string bắt buộc |
ISP / Location:
"Viettel", "FPT", "VNPT", "DatacenterA", "DatacenterB", "DatacenterC", "US", "4Gvinaphone". |
| quantity | integer bắt buộc | Number of proxy lines to rent. |
| days | integer bắt buộc | Rent duration in days (minimum 1 day). |
| protocol | string bắt buộc | Connection protocol format: "HTTP" or "SOCKS5". |
| user | string không bắt buộc | Custom credentials username for proxy authentication. |
| password | string không bắt buộc | Custom credentials password for proxy authentication. |
{
"status": "success",
"data": [
{
"id": 279,
"proxy_type": "Proxy v4 static",
"protocol": "HTTPS",
"data": "206.125.175.230:13271:bUMBYc:YbhrHU",
"data2": "114.256.712.19:13271:bUMBYc:YbhrHU",
"status": "success",
"expired_at": "18-05-2025 22:14:17"
}
],
"payment": 1152,
"balance": 965567
}
Lấy chi tiết Proxy
Lấy thông tin chi tiết proxy, cấu hình xác thực, trạng thái và ngày hết hạn theo ID Proxy.
| Tham số | Kiểu dữ liệu & Quy tắc | Mô tả |
|---|---|---|
| key | string bắt buộc | Your unique API Key. |
| action | string bắt buộc | Set to "get_proxy". |
| proxy_id | integer bắt buộc | Target unique Proxy ID. |
{
"status": "success",
"order": {
"proxy_id": 37775,
"proxy_type": "Proxy v4 static",
"protocol": "HTTPS",
"data": "172.111.171.99:14288:10md12:123456",
"data2": "114.122.09.99:11218:10md12:123456",
"status": "success",
"expired_at": "18-05-2025 22:14:17"
}
}
Truy vấn / Thay đổi IP Proxy xoay
Truy vấn cấu hình kết nối đang hoạt động hoặc kích hoạt đổi IP ngay lập tức cho gói proxy xoay.
| Tham số | Kiểu dữ liệu & Quy tắc | Mô tả |
|---|---|---|
| key | string bắt buộc | Your unique API Key. |
| action | string bắt buộc | Set to "get_rotate_proxy". |
| key_rotate | string bắt buộc | The rotation key associated with your proxy order. |
| operator | string không bắt buộc | Target ISP: "Viettel", "FPT", "VNPT". |
| location | integer không bắt buộc | Region location code (select from codes listed on the proxy page). Default is 0 (Random). |
| whitelist | string không bắt buộc | IPv4 Address to whitelist for passwordless authorization. |
{
"status": "success",
"message": "Proxy này sẽ die sau 1021s",
"data": {
"key_rotate": "KFBlsUezBtRMKTmiHdlhHY",
"http": "42.114.164.224:20841:khljtiNj3Kd:fdkm3nbjg45d",
"socks5": "42.114.164.224:30841:khljtiNj3Kd:fdkm3nbjg45d",
"operator": "viettel",
"location": "HaiDuong1",
"expired_at": "18-05-2025 22:14:17"
}
}
Danh sách tất cả Proxy hoạt động
Lấy mảng danh sách chi tiết của tất cả proxy tĩnh và proxy xoay đang hoạt động liên kết với tài khoản của bạn.
| Tham số | Kiểu dữ liệu & Quy tắc | Mô tả |
|---|---|---|
| key | string bắt buộc | Your unique API Key. |
| action | string bắt buộc | Set to "get_all_proxy". |
{
"status": "success",
"order": [
{
"id": 251,
"proxy_type": "Proxy v4 static",
"protocol": "HTTP",
"operator": "FPT",
"day": 89,
"data": "206.125.175.230:13271:bUMBYc:YbhrHU",
"data2": "114.256.712.19:13271:bUMBYc:YbhrHU",
"status": "success",
"expired_at": "18-05-2025 22:14:17",
"auto_renew": 0
}
]
}
Gia hạn Proxy
Gia hạn thời gian thuê cho một hoặc nhiều proxy tĩnh.
| Tham số | Kiểu dữ liệu & Quy tắc | Mô tả |
|---|---|---|
| key | string bắt buộc | Your unique API Key. |
| action | string bắt buộc | Set to "renew_proxy". |
| proxy_id | string bắt buộc | Target Proxy ID or comma-separated list of IDs. |
| days | integer bắt buộc | Number of days to renew. |
{
"status": "success",
"data": [
{
"proxy_id": 37775,
"proxy_type": "Proxy v4 static",
"protocol": "SOCKS5",
"operator": "FPT",
"data": "172.111.171.99:14288:newuser:newpass",
"status": "success",
"expired_at": "18-05-2025 22:14:17"
}
],
"totalPrice": 5000
}
Tải danh sách gói Proxy
Tải xuống danh sách tất cả các IP proxy đang hoạt động trong gói tĩnh dưới dạng text.
| Tham số | Kiểu dữ liệu & Quy tắc | Mô tả |
|---|---|---|
| key | string bắt buộc | Your unique API Key. |
| action | string bắt buộc | Set to "download_package". |
| proxy_id | integer bắt buộc | The package ID of the purchased static proxy package. |
| mode | integer bắt buộc | Select format format: 1 = source direct list, 2 = forward/mapped proxy list. |
{
"status": "success",
"type": "HTTP",
"count": 3,
"list": [
"1.1.1.1:1010:user:pass",
"2.2.2.2:2020:user:pass",
"3.3.3.3:3030:user:pass"
]
}
Cập nhật thông tin xác thực Proxy
Thay đổi tài khoản, mật khẩu hoặc giao thức kết nối (HTTP/SOCKS5) của tài nguyên proxy đang hoạt động.
| Tham số | Kiểu dữ liệu & Quy tắc | Mô tả |
|---|---|---|
| key | string bắt buộc | Your unique API Key. |
| action | string bắt buộc | Set to "change_auth_proxy". |
| proxy_id | string bắt buộc | Target Proxy ID or comma-separated list of IDs. |
| protocol | string không bắt buộc | New protocol: "HTTP" or "SOCKS5". Default is keeping current. |
| user | string không bắt buộc | New Username. Set as "random" for automatic generation. |
| password | string không bắt buộc | New Password. Set as "random" for automatic generation. |
{
"status": "success",
"data": [
{
"proxy_id": 251,
"proxy_type": "Proxy v4 static",
"protocol": "SOCKS5",
"operator": "FPT",
"data": "172.111.171.99:14288:newuser:newpass",
"status": "success",
"expired_at": "18-05-2025 22:14:17"
}
]
}
Cấp lại địa chỉ IP Proxy mới
Re-allocate a brand-new IP address line for an active static proxy slot.
Cost: 1,500đ per allocation change.
| Tham số | Kiểu dữ liệu & Quy tắc | Mô tả |
|---|---|---|
| key | string bắt buộc | Your unique API Key. |
| action | string bắt buộc | Set to "change_proxy". |
| proxy_id | string bắt buộc | Target Proxy ID or comma-separated list of IDs. |
| loaiproxy | string bắt buộc | Target network ISP region: "Viettel", "FPT", "VNPT", "DatacenterB". |
| protocol | string không bắt buộc | Desired connection protocol: "HTTP" or "SOCKS5". |
| user | string không bắt buộc | Custom Username. Default is keeping current. |
| password | string không bắt buộc | Custom Password. Default is keeping current. |
{
"status": "success",
"data": [
{
"proxy_id": 251,
"proxy_type": "Proxy v4 static",
"protocol": "HTTP",
"operator": "VNPT",
"data": "42.115.123.45:12345:user123:pass456",
"status": "success",
"expired_at": "18-05-2025 22:14:17"
}
]
}