For Developers
API Documentation
Integrate Buy-Followers services into your own platform with our simple REST API.
Getting Started
Our API follows standard REST conventions. All requests require an API key, which you can generate from your panel dashboard at app.buy-followers.org.
Base URL:
https://api.buy-followers.org/v2
Authentication
Include your API key in all requests.
// Header
Authorization: Bearer YOUR_API_KEY
Endpoints
POST/order
Place a new order
{
"service_id": 123,
"link": "https://instagram.com/username",
"quantity": 1000
}Response:
{
"order_id": 45678,
"status": "pending",
"charge": 1.06
}GET/order/{order_id}
Check order status
{
"order_id": 45678,
"status": "completed",
"quantity_delivered": 1000,
"charge": 1.06
}GET/balance
Check account balance
{
"balance": 150.00,
"currency": "USD"
}GET/services
List all available services
{
"services": [
{
"id": 123,
"name": "Instagram Followers",
"price": 1.06,
"min": 50,
"max": 10000
}
]
}Webhooks
Receive real-time updates when order status changes. Configure your webhook URL in the panel settings.
// POST to your webhook URL when order status changes
{
"event": "order.update",
"order_id": 45678,
"status": "completed",
"quantity_delivered": 1000
}Rate Limits
Standard rate limit: 60 requests per minute per API key. Higher limits available for verified partners — contact us to upgrade.