import requests
API_KEY = "YOUR_API_KEY"
BASE_URL = "https://www.panelbon.com/app/api/v2"
response = requests.post(BASE_URL, data={
"key": API_KEY,
"action": "services"
})
services = response.json()
response = requests.post(BASE_URL, data={
"key": API_KEY,
"action": "add",
"service": 1,
"link": "https://instagram.com/username",
"quantity": 1000
})
result = response.json()
print(f"Order ID: {result['order']}")
print(f"Final Price: ${result['final_price']}")
$apiKey = "YOUR_API_KEY";
$baseUrl = "https://www.panelbon.com/app/api/v2";
$ch = curl_init($baseUrl);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query([
'key' => $apiKey,
'action' => 'services'
]));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
$services = json_decode($response, true);
curl_close($ch);
$ch = curl_init($baseUrl);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query([
'key' => $apiKey,
'action' => 'add',
'service' => 1,
'link' => 'https://instagram.com/username',
'quantity' => 1000
]));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
$result = json_decode($response, true);
echo "Order ID: " . $result['order'] . "\n";
echo "Final Price: $" . $result['final_price'];
const axios = require('axios');
const API_KEY = 'YOUR_API_KEY';
const BASE_URL = 'https://www.panelbon.com/app/api/v2';
async function getServices() {
const response = await axios.post(BASE_URL, new URLSearchParams({
key: API_KEY,
action: 'services'
}));
return response.data;
}
async function createOrder() {
const response = await axios.post(BASE_URL, new URLSearchParams({
key: API_KEY,
action: 'add',
service: '1',
link: 'https://instagram.com/username',
quantity: '1000'
}));
console.log(`Order ID: ${response.data.order}`);
console.log(`Final Price: $${response.data.final_price}`);
return response.data;
}
createOrder();