API Documentation

Use the REST API to place orders for followers, likes, and views from your app or site. Get your API key from the dashboard.

Create order

POST /api/v1/order

Headers:

  • X-API-Key: Your API key
  • Content-Type: application/json

Body:

{
  "service_id": "<service id from dashboard>",
  "link": "https://instagram.com/username",
  "quantity": 1000
}

Response: { success: true, data: { order_id, status, charge } }

Example

curl -X POST https://your-domain.com/api/v1/order \
  -H "X-API-Key: bc_your_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "service_id": "<service id from dashboard>",
    "link": "https://instagram.com/username",
    "quantity": 1000
  }'
Get API key