Order

Place a new order.

Order

Auth and base URL details: see Welcome.

POST /v3/order

Place an order for a specific service.

Headers

  • Accept: application/json

  • Content-Type: application/json

Body

  • api_key (string, required): secret API key.

  • service (integer, required): service id.

  • link (string, required): target URL.

  • quantity (integer, required): must be within the service minimum and maximum.

cURL

curl
curl -X POST "https://plussuite.co/api/v3/order" \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  -d '{
    "api_key": "YOUR_SECRET_API_KEY",
    "service": 1,
    "link": "https://instagram.com/username",
    "quantity": 500
  }'

Response (success)

order is your external_order_id.

Errors

Invalid API key or API disabled

Rate limit exceeded

Service not found or inactive

Quantity outside min/max

Insufficient balance

Last updated