Tài liệu API Developer
Không chia sẻ API key cho bất kỳ ai.
POST /api/v2/create_order
{
  "success": true,
  "message": "Tạo đơn hàng thành công",
  "data": {
    "order_id": "12",
    "product_id": 12,
    "quantity": 1,
    "price_each": "1000",
    "total": 1000,
    "accounts": ["topie|topie123"],
    "created_at": "3636-36-36 36:36:36"
  }
}
  {
  "success": false,
  "error": {
    "code": "COOLDOWN_ACTIVE",
    "message": "Vui lòng chờ trước khi mua tiếp",
    "remaining_seconds": 19
  }
}
POST /api/v2/check_order
{
  "success": true,
  "message": "Lấy thông tin đơn hàng thành công",
  "data": {
    "order_id": "12",
    "product_id": "12",
    "quantity": "1",
    "price_each": "1000",
    "total": "1000",
    "status": "success",
    "accounts": ["topie|topie123"],
    "created_at": "3636-36-36 36:36:36"
  }
}
POST /api/v2/create-link
{
  "success": true,
  "message": "Tạo link thành công",
  "data": {
    "url_shortened": "link4m",
    "url": "https://link4m.com/3VcEc2p"
    "need_check_view": 1
  }
 {
  "success": false,
  "message": "Vui lòng chờ 8 giây trước khi tạo link tiếp",
  "seconds_remaining": 8
  }
}
POST /api/v2/get-link
{
   "success": true,
  "message": "Lấy danh sách nhiệm vụ thành công",
  "data": [
    {
      "id": 1,
      "name": "LINK4M",
      "image": "https://i.postimg.cc/sgYtTDPt/link4m.png",
      "hcoin": 10,
      "daily_limit": 20,
      "seconds_limit": 10
    },
    {
      "id": 8,
      "name": "YeuMoney",
      "image": "/upload/thumbnails/a992227ffb6ec4382352387fffcdc1a5.png",
      "hcoin": 10,
      "daily_limit": 2,
      "seconds_limit": 0
    },
    {
      "id": 10,
      "name": "TRAFFICTOT",
      "image": "/upload/thumbnails/7e0a2ae1a651f0a255a93cec6af153cf.gif",
      "hcoin": 1,
      "daily_limit": 1,
      "seconds_limit": 100
    }
  ]
}