HTTP Method POST
API URL https://likestarget.com/api/v1
Response Format JSON

Method:add

Parameters Descriptions
key Your API key
action add
service ID of service
link Link to page
quantity Needed quantity
runs (optional) Runs to deliver
interval (optional) Interval in minutes

Success Response:


{

  "status":"success"
  "order":"23501"

}

Method:status

Parameters Descriptions
key Your API key
action status
order Order ID

Success Response:


{

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

}

Method:Multiple orders status

Parameters Descriptions
key Your API key
action status
orders Order ID

Success Response:


  {
	"15": {
		"order": 15,
		"status": "Completed",
		"charge": 15,
		"start_count": "2",
		"remains": ""
	},
	"23": {
		"order": 23,
		"status": "Completed",
		"charge": 23,
		"start_count": "2",
		"remains": ""
	},
	"24": {
		"order": 24,
		"status": "Completed",
		"charge": 24,
		"start_count": "80",
		"remains": ""
	},
	"30": {
		"order": 30,
		"status": "Completed",
		"charge": 30,
		"start_count": "23",
		"remains": ""
	},
	"31": {
		"order": 31,
		"status": "Completed",
		"charge": 31,
		"start_count": "124",
		"remains": ""
	},
	"32": "Incorrect order ID"
}

Method:balance

Parameters Descriptions
key Your API key
action balance

Example Response:


{

  "balance": "100.78",
  "currency": "USD"

}

Method:services

Parameters Descriptions
key Your API key
action services

Example Response:


[
  {
      "service": "5",
      "name": "Instagram Followers [15K] ",
      "category": "Instagram - Followers [Guaranteed\/Refill] - Less Drops \u2b50",
      "rate": "1.02",
      "min": "500",
      "max": "10000"
      "type": default
      "desc": usernames
      "dripfeed": 1
  },
  {
      "service": "9",
      "name": "Instagram Followers - Max 300k - No refill - 30-40k\/Day",
      "category": "Instagram - Followers [Guaranteed\/Refill] - Less Drops \u2b50",
      "rate": "0.04",
      "min": "500",
      "max": "300000"
      "type": default
      "desc": usernames
      "dripfeed": 1
  },
  {
      "service": "10",
      "name": "Instagram Followers ( 30 days auto refill ) ( Max 350K ) (Indian Majority )",
      "category": "Instagram - Followers [Guaranteed\/Refill] - Less Drops \u2b50",
      "rate": "1.2",
      "min": "100",
      "max": "350000"
      "type": default
      "desc": usernames
      "dripfeed": 1
  }
]
Example of PHP Code

HTTP Method POST
API URL https://likestarget.com/api/v2
Response Format JSON

Method:add

Parameters Descriptions
api_token Your API token
action Method Name
package ID of package
link Link to page
quantity Needed quantity
custom_data optional, needed for custom comments, mentions and other relaed packages only.
each separated by '\n', '\n\r'

Success Response:


{

  "order":"23501"

}

Method:status

Parameters Descriptions
api_token Your API token
action Method Name
order Order ID

Success Response:


{

  "status": "Completed",

  "start_counter": "600",

  "remains": "600"

}

Method:balance

Parameters Descriptions
api_token Your API token
action Method Name

Example Response:


{

  "balance": "100.78",

  "currency": "USD"

}

Method:packages

Parameters Descriptions
api_token Your API token
action Method Name

Example Response:


[

  {

      "id": 101,

      "service_id": 1,

      "name": "	Facebook Page Likes",

      "rate": "1.2",

      "min": "100",

      "max": "20000",

      "service": "Facebook Page Likes",

      "type": "default",

      "desc": "0-3 Hours Start | Full Link | 20 Days Refill\r\nLink Format:\r\nhttps://www.instagram.com/official_social_sale/"

  },

  {

      "id": 102,

      "service_id": 12,

      "name": "Instagram Followers Europe",

      "rate": "1.3",

      "min": "100",

      "max": "100000",

      "service": "Instagram Service",

      "type": "default",

      "desc": "0-12 Hours Start | Full Link |\r\nLink Format:\r\nhttps://www.instagram.com/official_social_sale/"

  },

  {

      "id": 103,

      "service_id": 13,

      "name": "	YouTube Likes",

      "rate": "4",

      "min": "50",

      "max": "15000",

      "service": "Youtube Service",

      "type": "default",

      "desc": "1k/day\r\nMax - 15k\r\n8 Hours Start"

  }

]
Example of PHP Code