Calculate delivery price quotes before booking.

Pricing

Pricing

Get a price quote before creating a delivery. Use this to show customers the delivery fee at checkout.

Calculate Price

POST /api/v1/calculate-price
Content-Type: application/json

On-demand quote

{
  "fromLatitude": 29.3764,
  "fromLongitude": 47.9785,
  "toLatitude": 29.3117,
  "toLongitude": 48.0034,
  "deliveryArea": "Salmiya, Block 3",
  "deliveryPaciArea": "Salmiya"
}

Response:

{
  "quote": {
    "distance": 4.2,
    "distanceUnit": "km",
    "price": "2.500",
    "currency": "KWD",
    "estimatedDuration": 12,
    "tierLabel": "0–5 km",
    "specialZone": null
  }
}

Scheduled quote

Set isScheduled: true to get the flat scheduled rate instead of distance-based pricing.

{
  "fromLatitude": 29.3764,
  "fromLongitude": 47.9785,
  "toLatitude": 29.3117,
  "toLongitude": 48.0034,
  "isScheduled": true
}

Response:

{
  "quote": {
    "price": "2.000",
    "currency": "KWD",
    "pricingMode": "scheduled",
    "tierLabel": "Scheduled delivery (flat rate)"
  }
}

Request fields

FieldAliasesRequiredDescription
fromLatitudepickupLatitudeYesPickup latitude
fromLongitudepickupLongitudeYesPickup longitude
toLatitudedeliveryLatitudeYesDrop-off latitude
toLongitudedeliveryLongitudeYesDrop-off longitude
deliveryArea—NoImproves zone-based pricing accuracy
deliveryPaciArea—NoPACI area name
isScheduled—NoSet true for scheduled flat rate

Special zones

Some areas have fixed prices regardless of distance.

ZoneAreasPrice
Al Wafra / Al Khiran / Al MutlaaWafra Farms, Wafra Residential, Sabah Al-Ahmad 1–6, Al Mutlaa 1–125.000 KWD
Al Jahra / Ali Sabah Al SalamJahra, Sabah Al Salam3.000 KWD

📝 Zone detection

Pass deliveryArea or deliveryPaciArea to help the API match special zones accurately when the delivery address is in a boundary area.