API Documentation

Note: Please read the API intructions carefully. Its your solo responsability what you add by our API.

API Credentials

POST · JSON

API URL

Both /api/v1 and /api/v2 are supported with identical request/response.

API Key

••••••••••••••••••••••••

Place new Order

action: add
ParameterDescription
keyYour API key
actionadd
serviceService ID
linkLink to page
quantityNeeded quantity
runs (optional)Runs to deliver
interval (optional)Interval in minutes
ParameterDescription
keyYour API key
actionadd
serviceService ID
linkLink to page
ParameterDescription
keyYour API key
actionadd
serviceService ID
linkLink to page
commentsComments list separated by \r\n or \n
ParameterDescription
keyYour API key
actionadd
serviceService ID
linkLink to page
quantityNeeded quantity
usernamesUsernames list separated by \r\n or \n
hashtagsHashtags list separated by \r\n or \n
ParameterDescription
keyYour API key
actionadd
serviceService ID
linkLink to page
usernamesUsernames list separated by \r\n or \n
ParameterDescription
keyYour API key
actionadd
serviceService ID
linkLink to page
quantityNeeded quantity
hashtagHashtag to scrape usernames from
ParameterDescription
keyYour API key
actionadd
serviceService ID
linkLink to page
quantityNeeded quantity
usernameURL to scrape followers from
ParameterDescription
keyYour API key
actionadd
serviceService ID
linkLink to page
ParameterDescription
keyYour API key
actionadd
serviceService ID
linkLink to page
commentsComments list separated by \r\n or \n
ParameterDescription
keyYour API key
actionadd
serviceService ID
linkLink to page
quantityNeeded quantity
usernameUsername of the comment owner
ParameterDescription
keyYour API key
actionadd
serviceService ID
usernameUsername
minQuantity min
maxQuantity max
delayDelay in minutes. Possible values: 0, 5, 10, 15, 30, 60, 90
expiry (optional)Expiry date. Format d/m/Y

Example response:

{
  "status": "success",
  "order": 32
}

Status Order

action: status
ParameterDescription
keyYour API key
actionstatus
orderOrder ID

Example response:

{
  "order": "32",
  "status": "pending",
  "charge": "0.0360",
  "start_count": "0",
  "remains": "0"
}

Multiple orders status

action: status
ParameterDescription
keyYour API key
actionstatus
ordersOrder IDs separated by comma (E.g: 1,2,3) (Limit 100)

Example response:

{
  "12": {
    "order": "12",
    "status": "processing",
    "charge": "1.2600",
    "start_count": "0",
    "remains": "0"
  },
  "2": "Incorrect order ID",
  "13": {
    "order": "13",
    "status": "pending",
    "charge": "0.6300",
    "start_count": "0",
    "remains": "0"
  }
}

Cancel Order

action: cancel
Chỉ huỷ được khi service hỗ trợ huỷ và provider hỗ trợ huỷ. Đơn đã completed, refunded, partial, hoặc canceled sẽ không huỷ được.
ParameterDescription
keyYour API key
actioncancel
orderOrder ID

Example response: — success

{
  "status": "success",
  "message": "Cancel order successfully"
}

Error response

{
  "error": "Service not support cancel"
}

Cancel Multiple Orders

action: cancel
ParameterDescription
keyYour API key
actioncancel
ordersOrder IDs separated by comma (E.g: 123,456,789)

Example response:

[
  { "order": 123, "cancel": { "status": "success" } },
  { "order": 456, "cancel": { "error": "Order status not support cancel" } },
  { "order": 789, "cancel": { "error": "Incorrect order ID" } }
]

Create refill

action: refill
ParameterDescription
keyYour API key
actionrefill
orderOrder ID

Example response:

{
  "refill": "1"
}

Create multiple refill

action: refill
ParameterDescription
keyYour API key
actionrefill
ordersOrder IDs separated by comma (E.g: 123,456,789) (Limit 100)

Example response:

{
  "refill": "1"
}

Refill status

action: refill_status
ParameterDescription
keyYour API key
actionrefill_status
refillRefill ID

Example response:

{
  "status": "Completed"
}

Multiple refill status

action: refill_status
ParameterDescription
keyYour API key
actionrefill_status
refillsRefill IDs separated by comma (E.g: 123,456,789) (Limit 100)

Example response:

[
  { "refill": 1, "status": "Completed" },
  { "refill": 2, "status": "Rejected" },
  { "refill": 3, "status": { "error": "Incorrect refill ID" } }
]

Services Lists

action: services
ParameterDescription
keyYour API key
actionservices

Example response:

[
  {
    "service": "5",
    "name": "Instagram Followers [15K]",
    "category": "Instagram - Followers [Guaranteed/Refill]",
    "rate": "1.02",
    "min": "500",
    "max": "10000",
    "type": "default",
    "desc": "usernames",
    "dripfeed": 1
  }
]

Balance

action: balance
ParameterDescription
keyYour API key
actionbalance

Example response:

{
  "status": "success",
  "balance": "0.03",
  "currency": "USD"
}