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.
All requests are HTTP POST to a single endpoint. Authenticate with your personal key in every request.
| Method | action | Parameters | Description |
|---|---|---|---|
| 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. |
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"
{
"order": 23501
}
// status response
{
"charge": "1.2000",
"start_count": "3450",
"status": "In progress",
"remains": "200",
"currency": "USD"
}