What is UTM Parameters?

UTM parameters are tags added to a URL's query string to tell analytics tools where traffic came from and which campaign drove it.

UTM parameters are special tags appended to a URL that let analytics platforms attribute a visit to a specific marketing source, medium, and campaign. The acronym comes from Urchin Tracking Module, the analytics company Google acquired that became Google Analytics. When a user clicks a tagged link, the parameters travel in the URL and the analytics tool records exactly where the traffic originated.

There are five standard UTM parameters. utm_source names the referrer (newsletter, google, facebook), utm_medium describes the channel type (email, cpc, social), and utm_campaign identifies the specific initiative (spring-sale). Two optional parameters, utm_term and utm_content, capture paid keywords and let you distinguish between variations of a link, such as two buttons in the same email.

Consistency is the make-or-break factor with UTM tagging. Because the values are free text, 'Facebook', 'facebook', and 'FB' are recorded as three separate sources, fragmenting your reports. Establishing a strict naming convention — typically lowercase, hyphenated, and documented in a shared spreadsheet — keeps campaign data clean and comparable across the whole team.

UTM values must be URL-encoded so spaces and special characters do not break the link or the tracking. Building tagged URLs with a consistent builder and parsing existing links to audit their parameters are everyday tasks in marketing operations. Note that UTMs are visible and editable by anyone, so they should never carry sensitive data, and excessive parameters can make links look untrustworthy.

Examples

  • ?utm_source=newsletter&utm_medium=email&utm_campaign=spring-sale
  • utm_content=header-button vs utm_content=footer-link to A/B test placement
  • Inconsistent values 'Facebook' and 'facebook' splitting one source into two

Frequently asked questions

Free tools for working with UTM Parameters

Related terms