Embed DeliverIQ

Add an import cost calculator to your website with one line of code.

Option 1: iframe (simplest)

<iframe
  src="https://deliveriq.vercel.app/simulate"
  width="100%"
  height="800"
  frameborder="0"
  style="border-radius: 12px; border: 1px solid #e2e8f0;"
></iframe>

Option 2: API integration

const res = await fetch('https://deliveriq.vercel.app/api/simulate', {
  method: 'POST',
  headers: { 'Content-Type': 'application/json' },
  body: JSON.stringify({
    productDescription: 'iPhone 15',
    unitValue: 1199,
    currency: 'USD',
    quantity: 1,
    originCountry: 'US',
    shippingMode: 'courier',
    weightKg: 0.5,
    autoClassify: true,
  }),
});
const data = await res.json();
console.log(data.total); // { amountMinor: 245487, currency: 'USD' }

Option 3: Link with pre-filled params

<a href="https://deliveriq.vercel.app/simulate?desc=Your+Product&origin=CN&mode=sea_fcl&value=100&weight=50&qty=10">
  Check import cost →
</a>