Developer API Reference
Integrate SMM services, proxy purchases, and traffic campaigns directly into your applications with our standard JSON API.
https://like688.net/api/v2
Retrieve SMM Services List
Fetch a detailed list of all SMM services available for ordering under your account tier, including their rates, minimums, maximums, and features.
| Parameter | Type & Rules | Description |
|---|---|---|
| key | string required | Your unique API Key authentication token. |
| action | string required | Set parameter value to "services". |
| lang | string optional | 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"
}
]
Check Account Balance
Query your current account wallet balance and configured platform currency.
| Parameter | Type & Rules | Description |
|---|---|---|
| key | string required | Your unique API Key authentication token. |
| action | string required | Set parameter value to "balance". |
{
"balance": "343.22",
"currency": "VND"
}
Submit SMM Order
Create a new SMM marketing order. The required parameters adapt depending on the target service type.
| Parameter | Type & Rules | Description |
|---|---|---|
| key | string required | Your unique API Key. |
| action | string required | Set parameter value to "add". |
| service | integer required | The SMM Service ID obtained from the services list. |
| link | string required | Target link URL (Profile, post, channel, group, video, etc). |
| quantity | integer required | The quantity of views, followers, likes, etc. to buy. |
{
"order": 99999
}
Retrieve Order Status
Query the status, charge cost, start count, and remaining progress of a single order.
| Parameter | Type & Rules | Description |
|---|---|---|
| key | string required | Your unique API Key. |
| action | string required | Set to "status". |
| order | integer required | Target Order ID. |
{
"charge": "2.5",
"start_count": "168",
"status": "Completed",
"remains": "0"
}
Retrieve Status for Multiple Orders
Fetch status details for multiple orders simultaneously (up to 100 IDs at a time).
| Parameter | Type & Rules | Description |
|---|---|---|
| key | string required | Your unique API Key. |
| action | string required | Set to "status". |
| orders | string required | 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"
}
}
Request Order Refill
Trigger the refill service for a completed order that has dropped below the target count, if supported by the service server definition.
| Parameter | Type & Rules | Description |
|---|---|---|
| key | string required | Your unique API Key. |
| action | string required | Set to "refill". |
| order | integer required | Target Order ID to refill. |
{
"refill": "1298"
}
Request Multiple Order Refill
Submit refill requests for multiple orders simultaneously.
| Parameter | Type & Rules | Description |
|---|---|---|
| key | string required | Your unique API Key. |
| action | string required | Set to "refill". |
| orders | string required | Comma-separated list of Order IDs. |
[
{
"order": 123,
"refill": 1299
},
{
"order": 456,
"refill": 1300
},
{
"order": 789,
"refill": {
"error": "Incorrect order ID"
}
}
]
Check Refill Request Status
Check progress status of a previously created single refill request task.
| Parameter | Type & Rules | Description |
|---|---|---|
| key | string required | Your unique API Key. |
| action | string required | Set to "refill_status". |
| refill | integer required | Target Refill ID (e.g. 1298). |
{
"status": "Completed"
}
Check Multiple Refill Requests Status
Check current status of multiple refill tasks simultaneously.
| Parameter | Type & Rules | Description |
|---|---|---|
| key | string required | Your unique API Key. |
| action | string required | Set to "refill_status". |
| refills | string required | Comma-separated list of Refill IDs. |
[
{
"refill": 1299,
"status": "Completed"
},
{
"refill": 1300,
"status": "Rejected"
}
]
Request Order Cancellation
Submit cancellation requests for active orders (if cancellation features are supported by the respective server).
| Parameter | Type & Rules | Description |
|---|---|---|
| key | string required | Your unique API Key. |
| action | string required | Set to "cancel". |
| orders | string required | Comma-separated list of target Order IDs. |
[
{
"order": 123,
"cancel": {
"error": "Order cannot be cancelled"
}
},
{
"order": 456,
"cancel": 1
}
]