Base endpoint
// All requests share the same base URL
POST https://api.organicfollowers.demo/v2
Authentication
Every request needs your API key. Message us on WhatsApp to activate API access.
curl -X POST https://api.organicfollowers.demo/v2 \
-d "key=YOUR_API_KEY" \
-d "action=balance"
Endpoints
POSTaction=services
List every available service and its price.Rate limit: 30/min
POSTaction=add
Place a new order. Required: service, link, quantity.Rate limit: 60/min
POSTaction=status
Check the status of one or many orders.Rate limit: 120/min
POSTaction=balance
Return the current account balance.Rate limit: 30/min
POSTaction=refill
Request a refill on a previously-completed order.Rate limit: 30/min
Example - Place an order
// JavaScript / Node.js
const res = await fetch("https://api.organicfollowers.demo/v2", {
method: "POST",
headers: { "Content-Type": "application/x-www-form-urlencoded" },
body: new URLSearchParams({
key: "YOUR_API_KEY",
action: "add",
service: "123",
link: "https://instagram.com/yourhandle",
quantity: "1000"
})
});
const data = await res.json();