BoostFollower API Documentation
The BoostFollower API lets developers and marketplaces connect directly to BoostFollower and automate service discovery, pricing, orders, order status, refills and wallet balance checks.
API Base URL
https://boostfollower.online/api/publicEvery endpoint below is relative to this base URL.
API Partner Program — 30% OFF
Customers who actively use a valid BoostFollower API key are eligible for a 30% discount on BoostFollower services. Connect your platform, place API orders, then contact our team to verify your usage and activate your API Partner pricing. Your price = regular price × 0.70, applied automatically on our servers once your partner status is active.
How it works
- Create or sign in to your BoostFollower account.
- Generate an API key in Profile → API keys.
- Store the key securely in your own backend — never in frontend code.
- Fund your BoostFollower wallet (orders are charged in NGN).
- Retrieve available services.
- Create orders through the API.
- Check order status and request refills.
- Monitor your wallet balance and handle errors.
Authentication
Authenticated endpoints require a valid BoostFollower API key. Send it as an x-api-key header, or as a bearer token. Keys start with boost_live_. Requests without a valid key return 401.
x-api-key: boost_live_YOUR_KEYAuthorization: Bearer boost_live_YOUR_KEYKeep your API key private. Never publish it in frontend JavaScript, GitHub repositories, screenshots, public websites or client-side applications. You can revoke or regenerate a key at any time from your profile.
Endpoints
(7)Order statuses
Code examples
curl -X POST "https://boostfollower.online/api/public/order/create" \
-H "x-api-key: boost_live_YOUR_KEY" \
-H "content-type: application/json" \
-d '{"platform":"tiktok","category":"followers","quantity":1000,"link":"https://www.tiktok.com/@username"}'const res = await fetch("https://boostfollower.online/api/public/order/create", {
method: "POST",
headers: {
"x-api-key": process.env.BOOSTFOLLOWER_API_KEY,
"content-type": "application/json",
},
body: JSON.stringify({
platform: "tiktok",
category: "followers",
quantity: 1000,
link: "https://www.tiktok.com/@username",
}),
});
const data = await res.json();
console.log(data);<?php
$ch = curl_init("https://boostfollower.online/api/public/order/create");
curl_setopt_array($ch, [
CURLOPT_POST => true,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => [
"x-api-key: " . getenv("BOOSTFOLLOWER_API_KEY"),
"content-type: application/json",
],
CURLOPT_POSTFIELDS => json_encode([
"platform" => "tiktok",
"category" => "followers",
"quantity" => 1000,
"link" => "https://www.tiktok.com/@username",
]),
]);
$response = curl_exec($ch);
curl_close($ch);
echo $response;import os, requests
res = requests.post(
"https://boostfollower.online/api/public/order/create",
headers={
"x-api-key": os.environ["BOOSTFOLLOWER_API_KEY"],
"content-type": "application/json",
},
json={
"platform": "tiktok",
"category": "followers",
"quantity": 1000,
"link": "https://www.tiktok.com/@username",
},
timeout=30,
)
print(res.status_code, res.json())Errors
200OKThe request succeeded.
201CreatedThe order was created and your wallet was debited.
400Bad RequestA required field is missing or a value is invalid.
401UnauthorizedThe API key is missing, malformed, invalid or revoked.
402Payment RequiredYour BoostFollower wallet balance is too low for this order.
404Not FoundThe order or service does not exist, or does not belong to your account.
502Bad GatewayA delivery network rejected the request or is temporarily unreachable.
503Service UnavailableNo verified delivery network currently meets the start standard for that service. Nothing was charged.
Need help getting started?
Our team can help you connect your platform and activate API Partner pricing.