API Docs

HTTP Method POST
API URL https://bugabuzz.com/api
API KEY Login to view API KEY
Response format JSON

Add order

Parameters Description
apiKey Your API key
actionType add
orderType Service ID
orderUrl Link to page
orderQuantity Needed quantity
comment_strings (optional) Comments list (encoded)
runs (optional)(for dripfeed) Runs to deliver
interval (optional) Interval in minutes

Example success response

{

	"orderID": 23501,

	"remaining_balance": 100.02

}

Example error response

{
	"error": "incorrect service type"
}

Services List

Parameters Description
apiKey Your API key
actionType services

Example response

[

	"8": {

		"service_id": "8",

		"name": "Facebook Fan Page Post Likes ( Profile Post will Not Work )",

		"type": "default",

		"price": "10",

		"min_amount": "100",

		"max_amount": "2000",

		"description": " HQ  , Instant , to check counter go youtubecount.com",

		"category": "Facebook"

	},

	"11": {

		"service_id": "11",

		"name": "FB post likes",

		"type": "default",

		"price": "3",

		"min_amount": "100",

		"max_amount": "10000",

		"description": " HQ  , Instant , to check counter go youtubecount.com",

		"category": "Facebook"

	}

]

Order status

Parameters Description
apiKey Your API key
actionType status
orderID Order ID

Example response

{

	"orderQuantity": 10000,

	"startCount": "55",

	"remaining_amount": "1000.0000000000",

	"refunded_amount": "1000.0000000000",

	"orderStatus": "Partially Completed",

	"orderDate": "2016-10-15 12:47:53",

	"orderPrice": "2.0700000000"

}

Multiple Order status

Parameters Description
apiKey Your API key
actionType mass_status
orderID Order IDs separated by comma(100 orders at once)

Example response

{

	"2076": {

		"orderQuantity": 10000,

		"startCount": "55",

		"remaining_amount": "1000.0000000000",

		"refunded_amount": "1000.0000000000",

		"orderStatus": "Partially Completed",

		"orderDate": "2016-10-15 12:47:53",

		"orderPrice": "2.0700000000"

	},

	"2214": {

		"orderQuantity": 1000,

		"startCount": "0",

		"remaining_amount": 1000,

		"orderStatus": "Pending",

		"orderDate": "2018-04-08 20:34:55",

		"orderPrice": "0.7500000000"

	},

	"2215": {

		"orderQuantity": 100,

		"startCount": "0",

		"remaining_amount": 100,

		"orderStatus": "Pending",

		"orderDate": "2018-04-08 20:52:23",

		"orderPrice": "30.0000000000"

	}

}

Balance

Parameters Description
apiKey Your API key
actionType balance

Example response

{
	"balance": 10000,
	"currency": "USD",
}

Refill

Parameters Description
apiKey Your API key
actionType refill
orderID Order ID

Example response

{
	"status": Success,
	"message": "Your order successfully added for refill. Thank you for patience."
}

Cancel

Parameters Description
apiKey Your API key
actionType cancel
orderID Order ID

Example response

{
	"status": Success,
	"message": "Your order was successfully marked for cancellation. Thank you for patience."
}
Example of PHP code