Wallet-funded only
Resellers pay from their own balance. No credit, no risk.
Rate-limited
60 requests per minute per API key. Fair use for everyone.
Standard format
Same JSON/POST shape as JAP, PerfectPanel and GoodPanel.
Getting started
Three steps to connect any panel or script to your store.
Create an account
Sign up at Thehubsboost and add funds to your wallet (min $5).
https://thehubsboost.com/signup
Start sending requests
Use the endpoint below. POST with form-encoded or JSON body.
https://thehubsboost.com/api/public/v2
Endpoint examples
Copy-paste ready. Replace YOUR_API_KEY with your real key.
1. List services
Returns every active service with rates, min/max quantities and category.
/api/public/v2curl -X POST https://thehubsboost.com/api/public/v2 \ -d "key=YOUR_API_KEY" \ -d "action=services"
[
{
"service": "svc_abc123",
"name": "Instagram — Real Followers",
"type": "Default",
"category": "Instagram followers",
"rate": "0.40",
"min": "50",
"max": "100000",
"refill": false,
"cancel": true
}
]2. Check balance
Returns the wallet balance tied to the API key.
/api/public/v2curl -X POST https://thehubsboost.com/api/public/v2 \ -d "key=YOUR_API_KEY" \ -d "action=balance"
{
"balance": "24.5000",
"currency": "USD"
}3. Place an order
Deducts the charge from the wallet and submits the order. Returns the order ID and cost.
/api/public/v2curl -X POST https://thehubsboost.com/api/public/v2 \ -d "key=YOUR_API_KEY" \ -d "action=add" \ -d "service=svc_abc123" \ -d "link=https://instagram.com/username" \ -d "quantity=1000"
{
"order": "ord_xyz789",
"charge": "0.4000",
"currency": "USD"
}4. Order status
Check one order or up to 100 at once (bulk).
/api/public/v2# Single order curl -X POST https://thehubsboost.com/api/public/v2 \ -d "key=YOUR_API_KEY" \ -d "action=status" \ -d "order=ord_xyz789" # Bulk (up to 100 IDs) curl -X POST https://thehubsboost.com/api/public/v2 \ -d "key=YOUR_API_KEY" \ -d "action=status" \ -d "orders=ord_xyz789,ord_abc111,ord_def222"
# Single
{
"charge": "0.4000",
"start_count": "0",
"status": "In progress",
"remains": "1000",
"currency": "USD"
}
# Bulk
{
"ord_xyz789": { "status": "In progress", ... },
"ord_abc111": { "status": "Completed", ... },
"ord_def222": { "error": "Order not found" }
}5. Cancel an order
Cancels a pending or in-progress order and refunds the full charge to the wallet.
/api/public/v2curl -X POST https://thehubsboost.com/api/public/v2 \ -d "key=YOUR_API_KEY" \ -d "action=cancel" \ -d "order=ord_xyz789"
{
"cancel": {
"order": "ord_xyz789",
"status": "ok"
}
}Error codes
Common responses and what they mean.
| HTTP | Error | Meaning |
|---|---|---|
| 401 | Invalid API key | Key is missing, wrong or revoked. |
| 402 | Insufficient balance | Add funds to the wallet before ordering. |
| 402 | Daily spend cap exceeded | This key hit its daily limit. Wait or create a new key. |
| 400 | Service not found | The service ID does not exist or is inactive. |
| 400 | Quantity must be between X and Y | Respect the min/max shown in the service list. |
| 404 | Order not found | Order ID does not belong to this account. |