Developer API

Empower your SMM panel or custom application with our high-performance social exchange API. Scalable, secure, and built for 2026.

Latency: < 200ms Uptime: 99.9%

Authentication

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.

auth_request.json
POST https://audienceboostpro.com/api/v1/balance
Content-Type: application/json
Authorization: Bearer YOUR_API_KEY

{
    "api_key": "sk_live_v1_..."
}

Service List

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
        }
    ]
}

Create Order

POST https://audienceboostpro.com/api/v1/orders/create

{
    "api_key": "sk_live_v1_...",
    "service_id": 301,
    "link": "https://tiktok.com/@user/video/...",
    "quantity": 1000
}

Response 200

{
  "success": true,
  "order_id": 19283,
  "charge": 500,
  "currency": "Credits"
}

Response 400

{
  "success": false,
  "error": "Insufficient balance",
  "code": "LOW_FUNDS"
}

Error Codes

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.