Developer API ยท v2

Build on our API

Resell our entire catalogue from your own website or panel. Our API follows the industry-standard SMM v2 specification, so existing integrations work out of the box.

Getting started

All requests are HTTP POST to a single endpoint. Authenticate with your personal key in every request.

https://likeland.net/api/v2
Methods
MethodactionParametersDescription
Service list services โ€” Returns every active service with id, name, category, rate, min and max.
Place order add service, link, quantity Creates an order and returns its id.
Order status status order Returns charge, start_count, status, remains, currency.
Multiple status status orders (comma-separated) Returns the status of up to 100 orders at once.
Balance balance โ€” Returns your current balance and currency.

Example: place an order

curl -X POST https://likeland.net/api/v2 \
  -d "key=YOUR_API_KEY" \
  -d "action=add" \
  -d "service=1" \
  -d "link=https://instagram.com/username" \
  -d "quantity=1000"

Response

{
  "order": 23501
}

// status response
{
  "charge": "1.2000",
  "start_count": "3450",
  "status": "In progress",
  "remains": "200",
  "currency": "USD"
}
โœ‰๏ธ Email