QuickCoverQuote widget
Courier

A 60-second quote, embedded on your site.

Drop a single snippet onto your courier page and start collecting qualified quote leads with an indicative premium — without leaving your site.

  • 4 simple steps, mobile-friendly
  • Server-side validation, rate-limited
  • Leads stored securely in your dashboard
Courier insurance

Quick quote

ProductVehicleDriver & NCBClaimsContactQuote

Pick the product you'd like a quote for. More coming soon.

Embed it anywhere

Two options. Pick whichever your web team prefers.

Option 1 — Script tag (recommended)

One container + one script. Iframe is injected and auto-resizes.

<div id="qc-quote"></div>
<script src="/embed.js" data-target="#qc-quote" defer></script>

Option 2 — Plain iframe

If you can't add scripts. Resize handler included.

<iframe src="/widget" style="width:100%;border:0;min-height:680px"
  title="Courier quick quote" loading="lazy"></iframe>
<script>
  window.addEventListener('message', function (e) {
    if (e.data && e.data.type === 'qc-quote-resize') {
      var f = document.querySelector('iframe[src*="/widget"]');
      if (f) f.style.height = (e.data.height + 20) + 'px';
    }
  });
</script>

A note on your site's security headers

If your-site.example.com sets a strict Content-Security-Policy or X-Frame-Options, your web team may need to allow the widget origin () in the frame-src directive.