{"slug":"content-roi-attribution","title":"How We Measure Content ROI on a Comparison Site: Revenue Attribution Without Perfect Data","excerpt":"How do you know if a blog post is worth writing? For most content teams, the answer is page views or...","content":"How do you know if a blog post is worth writing? For most content teams, the answer is page views or organic traffic. At [SmartReview](https://www.aversusb.net), we measure content by one thing: revenue attribution.\n\nHere is our system for tying every piece of content to actual dollars, even when attribution is imperfect.\n\n## The Attribution Problem\n\nContent attribution is genuinely hard. A user might:\n\n1. Read a comparison page on Monday\n2. Come back directly on Wednesday\n3. Click an affiliate link on Friday\n4. Complete a purchase the following week after seeing a retargeting ad\n\nWhich touchpoint gets credit? The comparison page that started the journey? The direct visit that showed intent? The affiliate click that preceded purchase?\n\nWe use a blended model that gives partial credit to each touchpoint.\n\n## Our Attribution Model\n\n### First-Touch vs Last-Touch vs Blended\n\nMost affiliate networks use last-touch attribution. This systematically undervalues top-of-funnel content (comparison pages that introduce users to products) and overvalues bottom-of-funnel content (review pages that convert already-decided users).\n\nWe track all three:\n\n```typescript\ninterface AttributionEvent {\n  sessionId: string;\n  pageSlug: string;\n  pageType: \"comparison\" | \"review\" | \"blog\" | \"category\";\n  timestamp: Date;\n  source: \"organic\" | \"direct\" | \"referral\" | \"email\";\n  affiliateClickId?: string;\n  conversionValue?: number;\n}\n\ninterface ContentAttribution {\n  slug: string;\n  firstTouchRevenue: number;   // 100% credit to first page in session\n  lastTouchRevenue: number;    // 100% credit to page before affiliate click\n  linearRevenue: number;       // Equal credit across all touchpoints\n  positionBasedRevenue: number; // 40% first, 40% last, 20% middle\n}\n```\n\nWe report on position-based attribution as our primary metric. It best reflects how comparison content actually works: the first page creates consideration, middle pages build conviction, the final page triggers action.\n\n### Tracking Implementation\n\n```typescript\n// Track every meaningful page interaction\nfunction trackPageView(page: PageData) {\n  const sessionId = getOrCreateSessionId();\n  const event: AttributionEvent = {\n    sessionId,\n    pageSlug: page.slug,\n    pageType: page.type,\n    timestamp: new Date(),\n    source: getTrafficSource(),\n  };\n\n  // Store in session (for within-session attribution)\n  appendToSession(sessionId, event);\n\n  // Store in database (for cross-session attribution)\n  db.attributionEvent.create({ data: event });\n}\n\n// When affiliate click happens, close the attribution loop\nfunction trackAffiliateClick(link: AffiliateLink) {\n  const sessionId = getOrCreateSessionId();\n  const clickId = generateClickId();\n\n  // Tag the affiliate URL with our click ID\n  const taggedUrl = appendParam(link.productUrl, \"ref\", clickId);\n\n  // Store the full session path for this click\n  const sessionPath = getSessionEvents(sessionId);\n  db.affiliateClick.create({\n    data: {\n      clickId,\n      sessionId,\n      retailer: link.retailer,\n      productUrl: link.productUrl,\n      sessionPath: JSON.stringify(sessionPath),\n    }\n  });\n\n  return taggedUrl;\n}\n```\n\n## Calculating Page-Level ROI\n\nOnce we have attribution data, we calculate ROI per page:\n\n```typescript\nasync function calculatePageROI(slug: string, days: number = 30) {\n  const [attributionRevenue, productionCost] = await Promise.all([\n    getAttributionRevenue(slug, days),\n    getProductionCost(slug),\n  ]);\n\n  const pageviews = await getPageviews(slug, days);\n  const organicTrafficValue = estimateOrganicValue(pageviews);\n\n  return {\n    slug,\n    attributionRevenue,          // Actual affiliate revenue attributed\n    organicTrafficValue,          // Estimated value of organic traffic (CPC equiv)\n    productionCost,               // Time + AI API costs to produce\n    roi: (attributionRevenue - productionCost) / productionCost,\n    revenuePerPageview: attributionRevenue / pageviews,\n    paybackPeriodDays: productionCost / (attributionRevenue / days),\n  };\n}\n```\n\n### Estimating Organic Traffic Value\n\nFor pages with low affiliate conversion but high organic traffic, we estimate the value using CPC equivalents:\n\n```typescript\nfunction estimateOrganicValue(pageviews: number): number {\n  // Average CPC for comparison keywords is $1.20-3.50\n  // We use $1.80 as our baseline\n  const estimatedCPC = 1.80;\n  const estimatedCTR = 0.035; // 3.5% avg organic CTR\n\n  // Organic value = what we would have paid for this traffic via Google Ads\n  return pageviews * estimatedCTR * estimatedCPC;\n}\n```\n\n## Our Content Scorecard\n\nEvery 30 days, we generate a scorecard ranking all pages by ROI:\n\n| Metric | Weight | Why |\n|--------|--------|-----|\n| Attribution revenue (30 days) | 40% | Direct revenue signal |\n| Organic traffic value | 25% | Long-term SEO value |\n| Affiliate CTR | 20% | Monetization efficiency |\n| Avg time on page | 10% | Quality signal |\n| Return visitor rate | 5% | Loyalty signal |\n\nPages scoring below a threshold get flagged for:\n- Refresh (if traffic is high but conversion is low)\n- Consolidation (if similar higher-performing page exists)\n- Deletion (if traffic and revenue are both minimal)\n\n## What We Have Learned\n\n### Comparison pages outperform blog posts 3:1\nOur comparison pages average $0.045 revenue per pageview. Blog posts average $0.015. The intent difference is that large.\n\n### Long-tail comparisons have better ROI than head terms\nA comparison for two niche robot vacuums (10K searches/mo, low competition) generates better ROI than AirPods vs Sony (50K searches/mo, high competition). Lower production cost, faster ranking, similar purchase intent.\n\n### Affiliate CTR is more actionable than conversion rate\nConversion rate is controlled by the retailer. CTR is controlled by us. If CTR is low, we test: CTA placement, button copy, price display format. These changes move the needle in days, not months.\n\n### Time-to-revenue varies dramatically by category\nMattress comparisons take 60-90 days to generate revenue (long consideration cycle). Electronics comparisons generate revenue within 7-14 days. Plan production accordingly.\n\n## The Practical Upshot\n\nIf you are building a content business:\n\n1. Instrument everything from day one. Retrofitting attribution tracking is painful.\n2. Use position-based attribution, not last-touch. Last-touch penalizes your best top-of-funnel content.\n3. Calculate ROI per page, not per category. Your best performers will surprise you.\n4. Optimize CTR before conversion rate. You control the former, the retailer controls the latter.\n5. Separate the comparison and blog playbooks. They have different economics and different timelines.\n\nThe comparison pages that drive revenue are not always the ones with the most traffic. Revenue-per-pageview is a far better optimization target than raw traffic.\n\n---\n\n*Part 11 of our Building SmartReview series. Previous: [Part 10: Building a Partnership Pitch](https://dev.to/danie_rozin/building-a-partnership-pitch-that-converts-lessons-from-24-brand-outreach-attempts-2nb9)*","category":"business","tags":["webdev","business","analytics","tutorial"],"url":"https://www.aversusb.net/blog/content-roi-attribution","publishedAt":"2026-06-25T11:21:34.053Z","updatedAt":"2026-06-25T11:21:34.055Z","articleSchema":{"@context":"https://schema.org","@type":"BlogPosting","@id":"https://www.aversusb.net/blog/content-roi-attribution#article","headline":"How We Measure Content ROI on a Comparison Site: Revenue Attribution Without Perfect Data","description":"How do you know if a blog post is worth writing? For most content teams, the answer is page views or...","abstract":"How do you know if a blog post is worth writing? For most content teams, the answer is page views or...","url":"https://www.aversusb.net/blog/content-roi-attribution","image":{"@type":"ImageObject","@id":"https://www.aversusb.net/blog/content-roi-attribution#primaryImage","url":"https://www.aversusb.net/api/og?title=How%20We%20Measure%20Content%20ROI%20on%20a%20Comparison%20Site%3A%20Revenue%20Attribution%20Without%20Perfect%20Data&type=blog","contentUrl":"https://www.aversusb.net/api/og?title=How%20We%20Measure%20Content%20ROI%20on%20a%20Comparison%20Site%3A%20Revenue%20Attribution%20Without%20Perfect%20Data&type=blog","width":1200,"height":630,"caption":"How We Measure Content ROI on a Comparison Site: Revenue Attribution Without Perfect Data"},"thumbnailUrl":"https://www.aversusb.net/api/og?title=How%20We%20Measure%20Content%20ROI%20on%20a%20Comparison%20Site%3A%20Revenue%20Attribution%20Without%20Perfect%20Data&type=blog","contentReferenceTime":"2026-06-25T11:21:34.055Z","datePublished":"2026-06-25T11:21:34.053Z","dateCreated":"2026-06-25T11:21:34.053Z","dateModified":"2026-06-25T11:21:34.055Z","author":{"@type":"Organization","@id":"https://www.aversusb.net/#organization","name":"A Versus B"},"publisher":{"@type":"Organization","@id":"https://www.aversusb.net/#organization","name":"A Versus B"},"inLanguage":"en-US","isPartOf":{"@type":"WebSite","@id":"https://www.aversusb.net/#website"},"keywords":"webdev, business, analytics, tutorial","articleSection":"business","wordCount":935,"license":"https://creativecommons.org/licenses/by/4.0/","speakable":{"@type":"SpeakableSpecification","cssSelector":["h1",".article-excerpt",".article-intro","#article-summary"]},"accessMode":["textual"],"accessModeSufficient":[{"@type":"ItemList","itemListElement":["textual"]}],"isAccessibleForFree":true}}