Quick start
Get from nothing to your first tracked click and conversion in about three minutes. Your base URL for all API calls is https://www.conver.stream.
1. Grab your keys
Every ConverStream account has two keys: a public site key (safe to embed in the browser) and a secret API key (server-side only). Find both on your Installation page.
2. Paste the snippet
Drop this one line into the <head> of every page you want to track, replacing PUBLIC_SITE_KEY with your real public key:
<script async src="https://www.conver.stream/tracker/PUBLIC_SITE_KEY.js"></script>
3. See your first click
Visit one of your tracked pages with a click identifier in the URL, for example:
https://yourstore.com/?click_id=demo123&source=newsletter
The tracker auto-detects the click id, stores it in a first-party cookie, and sends a click event. Open Clicks in your dashboard and you'll see demo123 appear within a few seconds.
4. Fire a test conversion
On a confirmation page (or from the browser console on a tracked page), call:
window.ConverStream.trackConversion({
revenue: 50.00,
currency: "USD",
external_conversion_id: "order_123"
});
Refresh Conversions and your test conversion will be matched against the click. That's the full loop: click in, conversion out, reconciled automatically.