API Key Management
Your API key allows you to programmatically access Lazack Boost services. Keep it secure and never expose it in client-side code.
No API key generated
Status: Inactive
API Features
Fast Delivery
Instant order processing with real-time status updates
Secure
API key authentication with encrypted communications
Multi-Currency
Support for both TZS and USD payments
RESTful API
Standard REST endpoints with JSON responses
API Documentation
Authentication
Include your API key in the X-API-Key header for all requests. All responses are in JSON format.
# Authentication Header
curl -H "X-API-Key: your_api_key_here" \
"https://boostapi.lazackorganisation.my.id/api/v1/balance"
Available Endpoints
-
GET
/api/v1/balance
Get user balances in both TZS and USD
-
GET
/api/v1/services
Get available services with pricing in both currencies
-
POST
/api/v1/order
Place a new order for social media services
-
GET
/api/v1/orders
Get order history with pagination support
-
GET
/api/v1/order/{order_id}
Get specific order status and details
Multi-Language Examples
Get Balance
curl -X GET "https://boostapi.lazackorganisation.my.id/api/v1/balance" \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json"
const axios = require('axios');
const getBalance = async () => {
try {
const response = await axios.get('https://boostapi.lazackorganisation.my.id/api/v1/balance', {
headers: {
'X-API-Key': 'YOUR_API_KEY',
'Content-Type': 'application/json'
}
});
console.log('Balance:', response.data);
} catch (error) {
console.error('Error:', error.response?.data || error.message);
}
};
getBalance();
import requests
def get_balance():
headers = {
'X-API-Key': 'YOUR_API_KEY',
'Content-Type': 'application/json'
}
try:
response = requests.get(
'https://boostapi.lazackorganisation.my.id/api/v1/balance',
headers=headers
)
response.raise_for_status()
print('Balance:', response.json())
except requests.exceptions.RequestException as e:
print('Error:', e)
get_balance()
// Browser JavaScript
const getBalance = async () => {
try {
const response = await fetch('https://boostapi.lazackorganisation.my.id/api/v1/balance', {
method: 'GET',
headers: {
'X-API-Key': 'YOUR_API_KEY',
'Content-Type': 'application/json'
}
});
if (response.ok) {
const data = await response.json();
console.log('Balance:', data);
} else {
console.error('Error:', await response.text());
}
} catch (error) {
console.error('Error:', error);
}
};
getBalance();
Place 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_id": 301,
"username_or_link": "https://www.tiktok.com/@username",
"quantity": 1000,
"currency": "TZS"
}'
const axios = require('axios');
const placeOrder = async () => {
try {
const response = await axios.post(
'https://boostapi.lazackorganisation.my.id/api/v1/order',
{
service_id: 301,
username_or_link: 'https://www.tiktok.com/@username',
quantity: 1000,
currency: 'TZS'
},
{
headers: {
'X-API-Key': 'YOUR_API_KEY',
'Content-Type': 'application/json'
}
}
);
console.log('Order placed:', response.data);
} catch (error) {
console.error('Error:', error.response?.data || error.message);
}
};
placeOrder();
import requests
import json
def place_order():
headers = {
'X-API-Key': 'YOUR_API_KEY',
'Content-Type': 'application/json'
}
data = {
'service_id': 301,
'username_or_link': 'https://www.tiktok.com/@username',
'quantity': 1000,
'currency': 'TZS'
}
try:
response = requests.post(
'https://boostapi.lazackorganisation.my.id/api/v1/order',
headers=headers,
json=data
)
response.raise_for_status()
print('Order placed:', response.json())
except requests.exceptions.RequestException as e:
print('Error:', e)
place_order()
301,
'username_or_link' => 'https://www.tiktok.com/@username',
'quantity' => 1000,
'currency' => 'TZS'
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($data));
curl_setopt($ch, CURLOPT_HTTPHEADER, [
'X-API-Key: ' . $api_key,
'Content-Type: application/json'
]);
$response = curl_exec($ch);
$http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
if ($http_code === 200) {
$result = json_decode($response, true);
echo 'Order placed: ' . print_r($result, true);
} else {
echo 'Error: ' . $response;
}
curl_close($ch);
?>
// Browser JavaScript
const placeOrder = async () => {
try {
const response = await fetch('https://boostapi.lazackorganisation.my.id/api/v1/order', {
method: 'POST',
headers: {
'X-API-Key': 'YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
service_id: 301,
username_or_link: 'https://www.tiktok.com/@username',
quantity: 1000,
currency: 'TZS'
})
});
if (response.ok) {
const data = await response.json();
console.log('Order placed:', data);
} else {
console.error('Error:', await response.text());
}
} catch (error) {
console.error('Error:', error);
}
};
placeOrder();
API Testing
Test your API integration with the examples below. Make sure you have generated an API key first.