| API URL | Loading... |
| API Key | Chưa có API Key |
| HTTP Method | POST |
| Content-Type | application/x-www-form-urlencoded |
| Response | JSON |
| Parameters | Description |
|---|---|
| key | API Key |
| action | "balance" |
Example response
{
"balance": "68.6868",
"currency": "USD"
}
| Parameters | Description |
|---|---|
| key | API Key |
| action | "services" |
Example response
[
{
"service": 1,
"name": "Youtube views",
"type": "Default",
"category": "Youtube",
"rate": "2.5",
"min": "200",
"max": "10000",
"refill": true,
"cancel": true
"desc": "description for this service"
},
{
"service": 2,
"name": "Facebook comments",
"type": "Custom Comments",
"category": "Facebook",
"rate": "4",
"min": "10",
"max": "1500",
"refill": false,
"cancel": false
"description": "description for this service"
}
]
Default
Custom Comments
| Parameters | Description |
|---|---|
| key | API Key |
| action | "add" |
| service | Service ID |
| link | Link to page |
| quantity | Needed quantity |
| Parameters | Description |
|---|---|
| key | API Key |
| action | "add" |
| service | Service ID |
| link | Link to page |
| comments | Comments list separated by \n (newline) |
Example response
{
"order": 99999
}
| Parameters | Description |
|---|---|
| key | API Key |
| action | "status" |
| order | Order ID |
Example response
{
"charge": "2.5",
"start_count": "168",
"status": "Completed",
"remains": "0"
}
Status:
Pending, Processing,
In progress, Completed, Partial, Canceled
| Parameters | Description |
|---|---|
| key | API Key |
| action | "status" |
| orders | Order IDs (separated by a comma, up to 100 IDs) |
Example response
{
"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"
}
}
| Parameters | Description |
|---|---|
| key | API Key |
| action | "cancel" |
| order | Order ID |
Example response
{
"order": 1,
"cancel": 1
}
| Parameters | Description |
|---|---|
| key | API Key |
| action | "cancel" |
| orders | Order IDs (separated by a comma, up to 100 IDs) |
Example response
[
{
"order": 1,
"cancel": 1
},
{
"order": 2,
"cancel": {
"error": "Incorrect order ID"
}
}
]
| Parameters | Description |
|---|---|
| key | API Key |
| action | "products" |
Example response
[
{
"product": 1,
"category": "Youtube",
"name": "Youtube premium 1 month",
"require": "Input your account",
"rate": "2.5",
"min": 1,
"max": 1,
"status": "In stock",
"inventory": 40,
"type": "Service",
"description": "description for this service",
"currency": "VND"
},
{
"product": 2,
"category": "Netflix",
"name": "Account Netflix premium 1 month",
"rate": "0.5",
"min": 1,
"max": 10,
"status": "Out of stock",
"inventory": 2,
"type": "Auto",
"description": "",
"currency": "USD"
}
]
Auto
Service
| Parameters | Description |
|---|---|
| key | API Key |
| action | "add_product_order" |
| product | Product ID |
| quantity | Needed quantity |
| Parameters | Description |
|---|---|
| key | API Key |
| action | "add_product_order" |
| product | Product ID |
| quantity | Always 1 for Service type |
| require | Information needed to process the order |
Example response
{
"order": 99999
}
| Parameters | Description |
|---|---|
| key | API Key |
| action | "product_order_status" |
| order | Product Order ID |
Example response (Pending / Completed)
{
"charge": "7.5",
"status": "Completed",
"result": "Your account",
"currency": "USD"
}
Example response (Partial / Canceled)
{
"charge": "6",
"status": "Partial",
"remains": 3,
"result": "Your account 1\nYour account 2",
"currency": "USD"
}
Status:
Pending, Completed,
Partial, Canceled
| Parameters | Description |
|---|---|
| key | API Key |
| action | "product_order_status" |
| orders | Product Order IDs separated by comma (E.g: 123,456,789) (Limit 100) |
Example response
{
"123": {
"charge": "7.5",
"status": "Completed",
"result": "Your account",
"currency": "USD"
},
"456": {
"error": "Incorrect order ID"
},
"789": {
"charge": "6",
"status": "Partial",
"remains": 3,
"result": "Your account 1\nYour account 2",
"currency": "USD"
}
}
| Parameters | Description |
|---|---|
| key | API Key |
| action | "result_product" |
| order | Product Order ID |
Example response
{
"result": [
"Your account 1",
"Your account 2",
"Your account 3"
]
}