UTM

UTM (Urchin Tracking Module) parameters are short tags you append to a URL so analytics tools can attribute traffic and conversions to the right marketing efforts. They’re plain query parameters—nothing mystical—just ?key=value pairs added to links. When a user clicks a tagged link and lands on your site, those values help you attribute the visit to a specific campaign, traffic source, and medium. This is foundational for clean attribution and comparing performance across channels.

Example URL:
https://example.com/pricing?utm_source=newsletter&utm_medium=email&utm_campaign=summer_launch&utm_content=cta_button&utm_term=ssd+hosting

Standard UTM parameters

ParameterRequiredMeaningTypical values
utm_sourceYesWhere traffic originatesgoogle, newsletter, partner_x
utm_mediumYesChannel/type of trafficcpc, email, social, referral
utm_campaignYesMarketing initiative or themesummer_launch, bfcm_2025
utm_contentNoA/B variant or placementcta_button, hero_banner, ad_1
utm_termNoKeyword or audience tagssd hosting, remarketing_list_a

Why UTMs matter

  • Normalize reporting across platforms: the same taxonomy travels with the user, not the ad platform.
  • Tighten funnel analysis: correlate visits with landing page performance, sessions, and conversion events.
  • Make experiments falsifiable: utm_content turns “creative A vs. B” into comparable numbers.

Naming rules that keep data clean

  • Use lowercase, hyphens/underscores, and avoid spaces (or encode them).
  • Keep a shared taxonomy (e.g., mediums: cpc, email, social, referral).
  • Don’t store PII in UTMs.
  • Keep utm_campaign stable across all assets in the same initiative.

Common pitfalls

  • Double ? or missing & breaks parsing.
  • Redirect chains can drop parameters—ensure UTMs persist through redirects and link shorteners.
  • Over-tagging internal links pollutes attribution; reserve UTMs for incoming traffic.

Quick sanity check (mini “formula”)

Attribution tuple = (utm_source, utm_medium, utm_campaign)
Two visits with the same tuple roll up under one campaign; utm_content/term segment within it.

Pro tip: Pair consistent UTMs with server-side capture on the first hit of a session to avoid losing tags on subsequent navigation. Then compare campaign cohorts against engagement metrics like bounce rate, unique visitors, and conversions for a full read on performance.