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.
action=balance
Returns your current account balance and currency.
curl -X POST https://likeland.net/api/v2 \ -d "key=YOUR_API_KEY" \ -d "action=balance"
{
"balance": "120.5000",
"currency": "USD"
}
action=services
Returns every active service with its id, category, rate and limits.
curl -X POST https://likeland.net/api/v2 \ -d "key=YOUR_API_KEY" \ -d "action=services"
[
{
"service": 1,
"name": "Instagram Followers — Real",
"type": "Default",
"category": "Instagram",
"rate": "1.2000",
"min": "100",
"max": "50000",
"dripfeed": true,
"refill": true,
"cancel": true
}
]
action=add
Creates a new order and returns its id. The charge is deducted from your balance.
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
}
{
"error": "Insufficient balance. Please add funds."
}
action=status
Returns the charge, start count, live status and remains of one order.
curl -X POST https://likeland.net/api/v2 \ -d "key=YOUR_API_KEY" \ -d "action=status" \ -d "order=23501"
{
"charge": "1.2000",
"start_count": "3450",
"status": "In progress",
"remains": "200",
"currency": "USD"
}
action=status
Check up to 100 orders in a single request. Unknown ids come back with an error entry.
curl -X POST https://likeland.net/api/v2 \ -d "key=YOUR_API_KEY" \ -d "action=status" \ -d "orders=23501,23502,99999"
{
"23501": {
"charge": "1.2000",
"start_count": "3450",
"status": "Completed",
"remains": "0",
"currency": "USD"
},
"23502": {
"charge": "0.8400",
"start_count": "120",
"status": "In progress",
"remains": "460",
"currency": "USD"
},
"99999": {
"error": "Incorrect order ID"
}
}
action=cancel
Cancels orders that are still cancellable. The undelivered part is refunded to your balance automatically.
curl -X POST https://likeland.net/api/v2 \ -d "key=YOUR_API_KEY" \ -d "action=cancel" \ -d "orders=23501,23502"
[
{
"order": 23501,
"cancel": 1
},
{
"order": 23502,
"cancel": {
"error": "This order can no longer be cancelled."
}
}
]
action=refill
Requests a refill for a completed or partial order on a refill-enabled service.
curl -X POST https://likeland.net/api/v2 \ -d "key=YOUR_API_KEY" \ -d "action=refill" \ -d "order=23501"
{
"refill": 23501
}
{
"error": "This service does not support refill."
}
action=refill_status
Checks the state of a refill request using the id returned by the refill action.
curl -X POST https://likeland.net/api/v2 \ -d "key=YOUR_API_KEY" \ -d "action=refill_status" \ -d "refill=23501"
{
"status": "Pending"
}