Antlytics logoAntlytics
← Blog
5

Conversion Goals Without Cookies: A Practical Guide

Track signups, downloads, and purchases without cookies. Path-based goals work with privacy-friendly analytics.

Conversion Goals Without Cookies: A Practical Guide

You do not need cookies or event IDs to track conversions. A URL path is enough. Here is how path-based goal tracking works with privacy-friendly analytics.

What conversion goals look like without cookies

Traditional analytics tools track conversions by associating an event (button click, form submit) with an individual visitor's session. This requires a persistent identifier — typically a cookie — to link the event to the right person.

Path-based goals work differently. Instead of tracking what a visitor did, you track where they ended up. If a visitor reaches /thank-you, a conversion happened. Simple.

This works because most conversion flows end at a dedicated URL:

No cookies. No event tracking. No personal data. Just a URL.

Path-based goals explained

A path-based goal in Antlytics is a pathname you define. Any session that includes a pageview at that pathname counts as a conversion.

Rules:

This means if your signup flow ends at /signup/complete, your goal pathname is /signup/complete.

Setting up your first goal in Antlytics

  1. Open your Antlytics dashboard.
  2. Select the site you want to configure goals for.
  3. Go to Settings → Goals.
  4. Click Add goal.
  5. Enter the pathname — for example /thank-you.
  6. Save.

The goal appears in your dashboard overview. Conversions are counted retroactively within the current reporting window for sessions that already reached that path.

For full documentation, see the conversion goals guide.

Example: tracking newsletter signups

Your newsletter uses a form on /subscribe. After submission, visitors are redirected to /subscribe/success.

Goal setup: Pathname = /subscribe/success

Every session that reaches /subscribe/success is a newsletter conversion. The dashboard shows the total conversion count for the selected date range.

You can use the referrer breakdown on that goal to see where your signups come from — which blog posts, which social posts, which external links drive the most newsletter signups.

Example: tracking a purchase thank-you page

Your e-commerce checkout redirects to /order/confirmed after payment.

Goal setup: Pathname = /order/confirmed

This counts completed purchases. Combine with the referrer breakdown to understand which traffic sources drive purchases.

Note: Antlytics goal tracking is session-based, not revenue-based. You see how many sessions reached the conversion page, not the order value. Revenue attribution is not a feature of Antlytics. See Privacy analytics for e-commerce for more on what is and is not possible.

Limitations of path-based goals

Cannot track click events — If your conversion requires clicking a button that does not navigate to a new URL, you need a different approach. The simplest workaround: make the "thank you" state a real URL by redirecting after form submission.

Cannot track exact conversion value — Path-based goals count sessions that reached a URL. They do not capture order value, subscription tier, or revenue.

Cannot distinguish between multiple completions — If a visitor reaches /thank-you twice in one session (for example, by refreshing), the session is still counted once. Goals are per session, not per event.

Exact pathname matching — Wildcards are not supported. If your confirmation pages use unique paths like /order/12345/confirmed, you need to redirect them all through a common path like /order/confirmed.

When you need more

Path-based goals cover most common conversions. If you need event-level tracking (specific button clicks, scroll depth, video plays), custom event support is on the Antlytics roadmap. Check the roadmap for current availability.

FAQ

Does goal tracking require any extra code? No. Goals are configured in the dashboard and use the pageview data you already send. No extra tracking code is needed.

Can I have multiple goals per site? Yes. Set up as many goals as you need — one for newsletter signups, one for account creation, one for a key product action.

Does goal tracking work with the Free plan? Yes. Goals are available on both Free and Starter plans.

What if my thank-you page uses a unique path per order? Set up a server-side redirect so all completions go through a common pathname, then set that pathname as your goal.

Can I see which pages drive the most conversions? The referrer breakdown for each goal shows which traffic sources drive conversions. For within-site referral, you can cross-reference the top-pages table with the conversion count.


Related: Conversion goals docs · UTM campaign tracking guide · Quick start