API Documentation

Perfectpanel-compatible REST API. Generate your API key from your dashboard.

Endpoint

POST https://primefollows.pro/api/v2

All requests are POST with form-encoded or JSON body. Auth via your key parameter.

Add order

{
  "key": "YOUR_API_KEY",
  "action": "add",
  "service": 1234,
  "link": "https://instagram.com/yourpage",
  "quantity": 1000
}

Response: { "order": "PROVIDER_ORDER_ID" } — this is the upstream provider's order ID, usable directly for tracking on their panel.

Order status

{ "key": "...", "action": "status", "order": 87654 }
{
  "charge": "1.20",
  "start_count": "12450",
  "status": "In progress",
  "remains": "350",
  "currency": "USD"
}

Other actions

  • services — list all services
  • balance — your current balance
  • refill — request refill (if supported)
  • cancel — request cancel (if supported)