Ship Packages Intelligently

AI Parcels provides a fast, modern API for fetching shipping rates, printing labels, and tracking packages across multiple carriers seamlessly.

Lightning Fast

Edge-optimized endpoints guarantee low latency rates across multiple global carriers in real-time.

Save Money

Our routing algorithm ensures you always get the absolute best price for any package dimensions.

Developer First

Explore our beautiful, interactive API documentation to get integrated in minutes.

Integrate in minutes

Our REST API is designed to be as simple as possible. Try hitting these endpoints directly.

curl -X POST https://ai-parcels-worker.dotnethelp.workers.dev/.api/quotes \
  -H "Content-Type: application/json" \
  -d '{
  "origin": {
    "country": "GB",
    "postcode": "SW1A 2AA"
  },
  "destination": {
    "country": "GB",
    "postcode": "EH2 2EQ"
  },
  "parcels": [
    {
      "value": 150.00,
      "weight": 5.5,
      "length": 30,
      "width": 20,
      "height": 15
    }
  ]
}'