API v1
Base URL: https://boost-react.com
Generate your API Key at
Profile > API Keys
Authentication
| Header | Value |
|---|---|
X-Api-Key | Your API key |
Content-Type | application/json (POST only) |
GET Service list
HTTP Method GET: /api/v1/services
Response Example (200)
{
"data": [
{
"package-id": "5910",
"package-name": "Facebook Comments Basic",
"price": "0.005",
"min": 10,
"max": 100,
"Warranty": "No",
"Start time": "Instant",
"Refund": "Yes",
"Cancelled": "No"
}
]
}
|
Add Order
HTTP Method POST: /api/v1/orders
Body Example
{
"package_id": 1812,
"link": "https://example.com",
"quantity": 100,
"comment": "Optional",
"time": "Optional",
"reactions": "Optional"
}
Response Example (201)
{
"code": "358260",
"platform": "Audiomack",
"service_key": "Audiomack-Views",
"price": "0.000400",
"quantity": "100",
"amount_paid": "0.400000",
"link": "https://example.com",
"created_at": "2025-10-09 14:52:30"
}
|
Get Order Status
HTTP Method GET: /api/v1/orders/{code}
Response Example (200)
{
"code": "358260",
"platform": "Audiomack",
"service_key": "Audiomack-Views",
"status": "canceled",
"price": "0.000400",
"quantity": 1000,
"amount": "0.400000",
"amount_paid": "0.400000",
"link": "https://boost-react.com/",
"created_at": "2025-10-09 14:52:30"
}
|
Get Balance
HTTP Method GET: /api/v1/balance
Response Example (200)
{
"balance": "8.082365",
"currency": "USD"
}
|
Error Codes
| Error Codes | Meaning |
|---|---|
missing_api_key | Header not provided |
invalid_api_key | Unknown or revoked key |
rate_limited | Too many requests |
package_not_found | Invalid package_id |
link_required | Missing/invalid URL |
quantity_required | Quantity rule violated |
comment_required | Specific field required or invalid |
insufficient_balance | Not enough balance |
not_found | Order not found or not yours |