Tạo tài khoản admin để bắt đầu
Đăng nhập vào hệ thống
| ID | Dịch vụ | Order ID (External) | Start Num | Link | Quantity | Completed | Trạng thái | Thời gian |
|---|---|---|---|---|---|---|---|---|
| Đang tải... | ||||||||
| ID | Icon | Tên Category | Trạng thái | Thao tác | |
|---|---|---|---|---|---|
| Đang tải... | |||||
| ID | Service Key | Tên dịch vụ | Category | Trạng thái | Thao tác | |
|---|---|---|---|---|---|---|
| Đang tải... | ||||||
| ID | Tên máy chủ | Service ID (nội bộ) | Sabommo Service ID | Min Qty | Max Qty | Dịch vụ | API URL | Server ID | Reaction Type | Comment Type | Trạng thái | Thao tác | ||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Đang tải... | ||||||||||||||
Tất cả API requests cần có API key trong header hoặc query parameter:
X-API-Key: your_api_key_here
hoặc:
?apikey=your_api_key_here
Response:
{
"success": true,
"data": [
{
"service": "facebook_like",
"name": "Facebook Like",
"rate": 5,
"min": 10,
"max": 10000
}
]
}
Response:
{
"success": true,
"balance": 10000
}
Parameters:
service - Service type (required)link - Link to order (required)quantity - Quantity (10-10000, required)Response:
{
"success": true,
"message": "Order created successfully",
"data": {
"order_id": "uuid-here",
"service": "facebook_like",
"link": "https://facebook.com/...",
"quantity": 100,
"price": 500,
"status": "pending"
}
}
Response:
{
"success": true,
"data": {
"order_id": "uuid-here",
"service_type": "facebook_like",
"link": "https://facebook.com/...",
"quantity": 100,
"price": 500,
"status": "active",
"start_count": 1000,
"remains": 50
}
}
Query Parameters:
status - Filter by status (optional)limit - Limit results (default: 100)offset - Offset for pagination (default: 0)