Lazack Boost Lazack Boost / api
Developer Reference

Automate with
the Lazack API

Programmatically manage social media orders, check balances, and browse services. One key, unlimited scale.

Balance Check Service List Instant Ordering API Key Auth
Base URL https://boostapi.lazackorganisation.my.id/api/v1
Authentication
api key management
Send your key with every request: X-API-Key: YOUR_KEY
No active key
Generate a key to get started
Endpoints
available routes
GET /balance Retrieve TZS & USD balance
GET /services All service IDs and rates
POST /order Submit a new order
All endpoints require a valid X-API-Key header. Requests without a key return 401.
Code Examples
copy-ready snippets
# ── Balance ── curl -X GET "https://boostapi.lazackorganisation.my.id/api/v1/balance" \ -H "X-API-Key: YOUR_API_KEY" # ── Services ── curl -X GET "https://boostapi.lazackorganisation.my.id/api/v1/services" \ -H "X-API-Key: YOUR_API_KEY" # ── Create Order ── curl -X POST "https://boostapi.lazackorganisation.my.id/api/v1/order" \ -H "X-API-Key: YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{"service": 1, "link": "https://...", "quantity": 1000}'
const axios = require('axios'); const api = axios.create({ baseURL: 'https://boostapi.lazackorganisation.my.id/api/v1', headers: { 'X-API-Key': 'YOUR_API_KEY' }, }); // Balance const { data: balance } = await api.get('/balance'); console.log(balance); // Services const { data: services } = await api.get('/services'); console.log(services); // Create order const { data: order } = await api.post('/order', { service: 1, link: 'https://instagram.com/yourpage', quantity: 1000, }); console.log(order);
import requests BASE = "https://boostapi.lazackorganisation.my.id/api/v1" HEADERS = {"X-API-Key": "YOUR_API_KEY"} # Balance balance = requests.get(f"{BASE}/balance", headers=HEADERS).json() print(balance) # Services services = requests.get(f"{BASE}/services", headers=HEADERS).json() print(services) # Create order payload = {"service": 1, "link": "https://...", "quantity": 1000} order = requests.post(f"{BASE}/order", json=payload, headers=HEADERS).json() print(order)
$apiKey = 'YOUR_API_KEY'; $base = 'https://boostapi.lazackorganisation.my.id/api/v1'; function lazackRequest($method, $path, $body = null) { global $base, $apiKey; $ch = curl_init($base . $path); curl_setopt_array($ch, [ CURLOPT_RETURNTRANSFER => true, CURLOPT_CUSTOMREQUEST => $method, CURLOPT_HTTPHEADER => ["X-API-Key: $apiKey", "Content-Type: application/json"], CURLOPT_POSTFIELDS => $body ? json_encode($body) : null, ]); return json_decode(curl_exec($ch), true); } // Usage var_dump(lazackRequest('GET', '/balance')); var_dump(lazackRequest('POST', '/order', ['service'=>1, 'link'=>'https://...', 'quantity'=>1000]));
API Playground
live endpoint tester
You must generate an API key above before testing live endpoints.
Response
// awaiting request...