Add Order (action=add)

2. Add order – action=add

Description:
Creates a new Lab order for the specified service.

Parameters

  • key (required)
  • action (required) = add
  • service (required, integer): Service ID from services list.
  • link (required, string): URL/link to process.
  • quantity (required, integer): Quantity to deliver (must be between service min and max).
  • runs (optional, integer): Number of runs (for dripfeed services).
  • interval (optional, integer): Interval in minutes between runs (for dripfeed services).

Pricing

The API uses a 30% multiplier on the internal provider rate.

price = (service.price_per_k * 0.3 / 1000) * quantity

Example request

key=YOUR_API_KEY
action=add
service=1
link=https://example.com/page
quantity=1000

Example response (success)

{
  "order": 23501
}

Example response (validation error)

{
  "error": "Quantity must be between 50 and 10000"
}