Utm Builder
utm_builderBuild a UTM-tagged URL for campaign tracking. FREE.
Typical input {"url": "https://example.com/pricing", "source": "newsletter", "medium": "email", "campaign": "spring-launch"} returns {"tagged_url": "https://example.com/pricing?utm_source=newsletter& utm_medium=email&utm_campaign=spring-launch"}.
Use to build one tagged tracking URL. Not for analyzing campaign results and not for anything that belongs in the message body (audit_copy). Errors: on invalid, missing, or malformed input this tool never raises a protocol error — it returns {"error": ""} (for example {"error": "url must start with http(s)://"}). Every call is read-only and idempotent, so after correcting the input it is always safe to retry.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Destination URL; must start with http:// or https://. | |
| term | No | Optional utm_term value for paid keywords. | |
| medium | Yes | utm_medium value — the channel, e.g. "email" or "cpc". | |
| source | Yes | utm_source value — where the traffic comes from, e.g. "newsletter". | |
| content | No | Optional utm_content value for A/B variants. | |
| campaign | Yes | utm_campaign value — the campaign name, e.g. "spring-launch". |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||