Empower your SMM panel or custom application with our high-performance social exchange API. Scalable, secure, and built for 2026.
Access to the API is protected by a secret key. You must include your API Key in every request, either as a header or a body parameter. Keep this key confidential to protect your credits.
POST https://audienceboostpro.com/api/v1/balance Content-Type: application/json Authorization: Bearer YOUR_API_KEY { "api_key": "sk_live_v1_..." }
Fetch all available services, their categories, and the minimum/maximum quantity allowed for each order.
{
"success": true,
"services": [
{
"service_id": 101,
"name": "Instagram Likes",
"min": 10,
"max": 50000,
"rate_per_100": 50
}
]
}
POST https://audienceboostpro.com/api/v1/orders/create { "api_key": "sk_live_v1_...", "service_id": 301, "link": "https://tiktok.com/@user/video/...", "quantity": 1000 }
{
"success": true,
"order_id": 19283,
"charge": 500,
"currency": "Credits"
}
{
"success": false,
"error": "Insufficient balance",
"code": "LOW_FUNDS"
}
| Code | Description |
|---|---|
| INVALID_KEY | The provided API Key is missing or incorrect. |
| LOW_FUNDS | Your account balance is too low for this request. |
| MIN_QUANTITY | The quantity is below the limit for this service. |