Tài liệu API V2
REST API v2

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.

Kết nối HTTPS bảo mật Thực thi nhanh chóng
Thông tin kết nối
PHƯƠNG THỨC POST
ĐƯỜNG DẪN
https://mualike.pro/api/v2
ĐỊNH DẠNG x-www-form-urlencoded
MÃ API KEY
Vui lòng đăng nhập để lấy API Key
POST action = services

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ắcMô 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".
Response (JSON)
[
  {
    "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"
  }
]
POST action = balance

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ắcMô tả
key string bắt buộc Your unique API Key authentication token.
action string bắt buộc Set parameter value to "balance".
Response (JSON)
{
  "balance": "343.22",
  "currency": "VND"
}
POST action = add

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ắcMô 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.
Response (JSON)
{
  "order": 99999
}
POST action = status

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ắcMô 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.
Response (JSON)
{
  "charge": "2.5",
  "start_count": "168",
  "status": "Completed",
  "remains": "0"
}
POST action = status

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ắcMô 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").
Response (JSON)
{
  "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"
  }
}
POST action = refill

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ắcMô 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.
Response (JSON)
{
  "refill": "1298"
}
POST action = refill

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ắcMô 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.
Response (JSON)
[
  {
    "order": 123,
    "refill": 1299
  },
  {
    "order": 456,
    "refill": 1300
  },
  {
    "order": 789,
    "refill": {
      "error": "Incorrect order ID"
    }
  }
]
POST action = refill_status

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ắcMô 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).
Response (JSON)
{
  "status": "Completed"
}
POST action = refill_status

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ắcMô 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.
Response (JSON)
[
  {
    "refill": 1299,
    "status": "Completed"
  },
  {
    "refill": 1300,
    "status": "Rejected"
  }
]
POST action = cancel

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ắcMô 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.
Response (JSON)
[
  {
    "order": 123,
    "cancel": {
      "error": "Order cannot be cancelled"
    }
  },
  {
    "order": 456,
    "cancel": 1
  }
]
POST action = buy_proxy

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ắcMô 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.
Response (JSON)
{
  "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
}
POST action = get_proxy

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ắcMô 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.
Response (JSON)
{
  "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"
  }
}
POST action = get_rotate_proxy

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ắcMô 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.
Response (JSON)
{
  "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"
  }
}
POST action = get_all_proxy

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ắcMô tả
key string bắt buộc Your unique API Key.
action string bắt buộc Set to "get_all_proxy".
Response (JSON)
{
  "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
    }
  ]
}
POST action = renew_proxy

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ắcMô 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.
Response (JSON)
{
  "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
}
POST action = download_package

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ắcMô 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.
Response (JSON)
{
  "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"
  ]
}
POST action = change_auth_proxy

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ắcMô 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.
Response (JSON)
{
  "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"
    }
  ]
}
POST action = change_proxy

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ắcMô 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.
Response (JSON)
{
  "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"
    }
  ]
}

Yo! 👋
Cần mình support gì hông bro?

AI Support Bot
Online • Phản hồi ngay
Yo! 👋 Mình là bot hỗ trợ của shop.
Bạn cần giúp gì cứ hỏi thẳng nha, mình xử được hết! 😎
Vừa xong
Cung cấp bởi mualike.pro