Integrate our SMM services directly into your application with our powerful RESTful API
Sign up and generate your unique API key from the dashboard
Use POST method to send requests with your API key
Get instant JSON responses with order details and status
All API requests require your unique API key for authentication
{
"key": "a8Kx9mP!4nQr2sT-vWy5zB@7cDe-fGh3jK#6lMn-pRs1tU",
"action": "services"
}
Retrieve all available services with pricing and details
curl -X POST https://api.botzzz773.com/v2 \
-H "Content-Type: application/json" \
-d '{
"key": "a8Kx9mP!4nQr2sT-vWy5zB@7cDe-fGh3jK#6lMn-pRs1tU",
"action": "services"
}'
[
{
"service": 1,
"name": "Instagram Followers",
"type": "Default",
"category": "Instagram",
"rate": "1.81",
"min": "100",
"max": "100000",
"refill": true,
"cancel": true
},
{
"service": 2,
"name": "Instagram Likes",
"type": "Default",
"category": "Instagram",
"rate": "0.11",
"min": "50",
"max": "50000",
"refill": true,
"cancel": true
}
]
Place a new order for a specific service
const response = await fetch('https://api.botzzz773.com/v2', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
key: 'a8Kx9mP!4nQr2sT-vWy5zB@7cDe-fGh3jK#6lMn-pRs1tU',
action: 'add',
service: 1,
link: 'https://instagram.com/username',
quantity: 1000
})
});
const data = await response.json();
console.log(data);
{
"order": 23501
}
Get the current status of your order
{
"charge": "1.81",
"start_count": "1250",
"status": "Completed",
"remains": "0",
"currency": "USD"
}
Check your current account balance
{
"balance": "250.84",
"currency": "USD"
}
Request a refill for an existing order
{
"refill": "1"
}
Cancel a pending order
[
{
"order": 23501,
"cancel": 1
}
]
<?php
$api_key = 'a8Kx9mP!4nQr2sT-vWy5zB@7cDe-fGh3jK#6lMn-pRs1tU';
$api_url = 'https://api.botzzz773.com/v2';
$data = array(
'key' => $api_key,
'action' => 'add',
'service' => 1,
'link' => 'https://instagram.com/username',
'quantity' => 1000
);
$ch = curl_init($api_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, array(
'Content-Type: application/json'
));
$response = curl_exec($ch);
curl_close($ch);
$result = json_decode($response, true);
echo 'Order ID: ' . $result['order'];
?>
import requests
import json
api_key = 'a8Kx9mP!4nQr2sT-vWy5zB@7cDe-fGh3jK#6lMn-pRs1tU'
api_url = 'https://api.botzzz773.com/v2'
data = {
'key': api_key,
'action': 'add',
'service': 1,
'link': 'https://instagram.com/username',
'quantity': 1000
}
response = requests.post(
api_url,
json=data,
headers={'Content-Type': 'application/json'}
)
result = response.json()
print(f"Order ID: {result['order']}")
const axios = require('axios');
const apiKey = 'a8Kx9mP!4nQr2sT-vWy5zB@7cDe-fGh3jK#6lMn-pRs1tU';
const apiUrl = 'https://api.botzzz773.com/v2';
const data = {
key: apiKey,
action: 'add',
service: 1,
link: 'https://instagram.com/username',
quantity: 1000
};
axios.post(apiUrl, data)
.then(response => {
console.log('Order ID:', response.data.order);
})
.catch(error => {
console.error('Error:', error);
});