The Phantom Conversions: Why Your Magento 2 Data Is Lying to You
24 min read
The observation is simple: you spent a hefty sum on Google and Meta ads, your Magento 2 dashboard shows solid sales, but when you look at Google Analytics and Facebook Ads Manager, the numbers don't match. They never do. We're not talking about a negligible 5% discrepancy; we're talking about massive, budget-crushing data gaps that force you to make advertising decisions in the dark.
Simul Sarker
Founder & Product Designer of DataCops
Last Updated
June 3, 2026
The Phantom Conversions: Why Your Magento 2 Data Is Lying to You
Magento 2 gives you more control over your stack than any other ecommerce platform. That is the pitch. What nobody tells you is that "more control" means more places for the data pipeline to silently break, and on Magento 2 in 2026, it breaks in at least four places simultaneously before a single conversion touches your dashboard.
The stores I've looked at running Magento 2 typically have the same configuration: a GA4 extension from one vendor, a Meta CAPI addon bolted onto that, a separate CMP module for consent, and a GTM extension tying it together. Four extensions. Four vendors. Four update cycles. Zero guarantee they respect each other's consent signals, deduplicate events correctly, or survive the ad blocker that just blocked the third-party CDN one of them loads from. They call this a "tracking stack." I call it a stack of assumptions.
ChatGPT Ads Manager launched May 5, 2026, and 70.6% of LLM traffic is currently misclassified as direct in GA4. That means a growing slice of your paid acquisition is already invisible before you even get to the extension layer. Add the Magento-specific assembly problem on top of that and you start to understand why the numbers in your dashboard feel disconnected from what your finance team is reporting.
This is not an extension comparison article. It is a systems diagnosis. The right question is not which Magento CAPI extension to install. It is: at how many points is your current assembly injecting false data, and which of those points can you actually fix?
What the Magento 2 tracking assembly gets wrong by default
Magento 2 ships with nothing. No pixel. No server-side forwarding. No consent layer. You build it from extensions, and the build order matters more than the individual pieces.
Here is the failure sequence most stores are running right now.
The CMP loads from a third-party CDN. OneTrust, Cookiebot, Usercentrics: all of them call out to their own domain on page load. uBlock Origin and Brave block those CDNs by name, 30-40% of the time. The consent banner never renders. No consent is recorded. Your extension then either fires tracking unconditionally (a legal problem in the EEA) or blocks tracking entirely (an intelligence problem everywhere). You never see this failure in any dashboard because the session that hit an ad blocker never registered at all.
The GA4 or GTM extension loads its script client-side. Yes, even the ones with server-side tracking. Every Magento 2 extension that sends server-side events to GA4 Measurement Protocol or Meta CAPI still depends on the browser sending an initial event first. If the client-side script is blocked, the server-side pipe has nothing to forward. Stape's own documentation for their Magento 2 extension explicitly describes the Custom Loader, which proxies the GTM script through your subdomain specifically to survive ad blockers. That is the correct approach. Most stores are not running it.
The CAPI addon sends bot traffic upstream. Meta's Conversions API for Magento 2, whether via WeltPixel's addon, Magefan's extension, or a custom webhook, sends whatever lands on your server to Meta. It has no mechanism to filter datacenter traffic, headless browsers, or VPN endpoints before forwarding. Global invalid traffic is running at 20.64% in 2026 (Fraudlogix). On Instagram, the IVT rate hits 38%. Every bot conversion you forward to Meta goes into Lookalike Audience training. Meta's algorithm learns to find more traffic like your bots. You pay for the ads. You optimize toward the wrong humans.
The extensions conflict on event deduplication. Meta requires a unique event_id on both the browser pixel event and the CAPI event so it can deduplicate correctly. When your GA4 extension and your CAPI addon come from different vendors, they generate event IDs independently and they do not always match. The result is double-counted conversions in Meta Events Manager, inflated EMQ scores that look good but reflect phantom events, and ROAS figures that are structurally impossible to trust.
The Magento 2 extension landscape: what you are actually choosing between
There are roughly three tiers of solution for Magento 2 conversion tracking in 2026. The first tier is extension-based, where you assemble from the Adobe Marketplace. The second is infrastructure-based, where you wire up a server-side GTM container and use extensions only as data pushers. The third is a unified first-party architecture that replaces the assembly entirely.
WeltPixel GA4 PRO with CAPI Addon
WeltPixel's GA4 Pro extension is the most popular full-featured tracking module for Magento 2 and the most mature. It handles the full ecommerce data layer: product impressions, add-to-cart, checkout steps, purchases, refunds. The CAPI addon, which sits on top of the GA4 Pro license, adds Meta server-side forwarding with deduplication using a shared event ID, which is more than most competing extensions attempt.
What does not work: the CAPI addon requires the GA4 PRO tier, which means you are paying for a GA4 dependency just to unlock Meta server-side. There is no bot filtering. Every event that passes the browser layer gets forwarded to Meta unvalidated. The CMP dependency defaults to Magento's native cookie restriction mode, which is a basic consent gate, not a TCF 2.2 compliant first-party banner. Actual EEA compliance requires pairing with a third-party CMP, which introduces the CDN-blocking problem described above. Reviews on the Adobe Marketplace note update lag when Magento patches drop, and the addon architecture means two extension updates are required when Meta changes its API.
Right for: Magento 2 stores that need a well-supported, full-funnel GA4 implementation with Meta CAPI as a secondary priority, and that have a developer managing extension updates quarterly. Value 6/10. GA4 PRO starts at $249 one-time; CAPI addon is a separate license.
Magefan Facebook Pixel with Conversions API
Magefan's extension focuses specifically on Meta: browser pixel plus server-side CAPI in a single module. Over 23,000 downloads, which is the most-installed Meta CAPI extension for Magento 2 by a significant margin. Installation without the CAPI component is genuinely no-code. Events are configured through the admin panel and cover the standard set: ViewContent, AddToCart, InitiateCheckout, Purchase.
What does not work: it is Meta-only. No Google CAPI, no TikTok Events API, no LinkedIn. If your paid media runs across platforms, you are stacking extensions. The deduplication relies on the Magento session ID as the event ID, which has been reported to cause duplicate conversions in edge cases where the session regenerates at checkout. No bot filtering. The extension loads its client-side pixel script from Meta's CDN by default, meaning the browser-side component is blocked by the same ad blockers you are trying to route around. There is no built-in CMP and no Consent Mode v2 signal passing, which became mandatory for EEA advertisers with Google on June 15, 2026, and creates compliance exposure if your Google and Meta consent signals are not synchronized.
Right for: Magento 2 stores running Meta ads only, willing to accept the session ID deduplication limitation, with a developer available to configure the server authentication token. Value 6/10. Pricing starts around $149 one-time license.
Amasty Google Tag Manager and GA4 Extension
Amasty's GTM and GA4 module is the enterprise-grade option in the Magento 2 extension market. It ships with Google Consent Mode v2 compatibility, Hyvä theme support including Hyvä Checkout, and an event-level configuration interface that lets you enable or disable specific tracking events without touching code. The Google Consent Mode integration is done properly: the extension passes consent signals to GA4 through the consent mode API rather than blocking the GTM container entirely on rejection, so modeling data still flows after "Reject All."
What does not work: the consent compatibility requires the separate Amasty Cookie Consent (GDPR) module, version 2.10.1 or newer. That is two extensions to get one behavior, and both need to be kept in sync across Magento minor versions. Meta CAPI is not included; you add it via addon or separate extension. Pricing at $229 puts you in a range where the ongoing update cost starts to matter. Community feedback mentions that configuration complexity is high enough that non-technical merchants frequently misconfigure the consent mode mapping and end up either blocking all tracking or ignoring consent signals entirely.
Right for: Magento 2 B2B stores with EEA traffic and a technical team that can manage multi-extension dependencies. Value 6/10. $229 one-time license.
Meetanshi GA4 Extension
Meetanshi's GA4 extension is the pragmatic budget option. It uses GTM for implementation, which means configuration happens in the GTM interface rather than the Magento admin, and it is compatible with the Hyvä theme. The pricing is accessible and the installation process is documented clearly enough that merchants without dedicated Magento developers can follow it.
What does not work: no server-side tracking in the base extension. No CAPI for any platform. No bot filtering. No CMP. It is a client-side GA4 implementation via GTM, which means ad blockers suppress it at the same rate as any other third-party analytics script, roughly 25-35% of real sessions. If you are running paid media and need CAPI, this extension gets you no closer to server-side forwarding. The Consent Mode v2 compatibility requires pairing with a separate cookie consent module, which is true across the Meetanshi product line.
Right for: Content or lead-gen Magento stores that need basic GA4 event coverage and are not running significant paid media budgets. Value 7/10 for the specific use case. Pricing around $79 one-time license.
Stape Conversion Tracking for Magento 2
Stape's Magento 2 extension is free and does something more important than most paid extensions: it correctly proxies the GTM container through your own subdomain via a Custom Loader, which is the mechanism that actually survives ad blockers. The extension also handles first-party cookie restoration in Safari 16.4 and extends cookie lifetime beyond ITP's 7-day cap. If you are running a server-side GTM container through Stape's hosting, this is the correct Magento module to use as the bridge.
What does not work: the extension is infrastructure, not a solution. You still need to configure the sGTM container, build or import tag templates for each ad platform, maintain those templates as APIs change, and pay separately for Cloud Run compute or Stape's hosting ($17/month Pro plus $50-300/month Cloud Run equivalent). There is no bot filtering in the GTM layer. Bots that execute JavaScript, which Puppeteer and Selenium do trivially, pass through the Custom Loader and fire events to your sGTM container as cleanly as real humans. The full setup requires genuine GTM expertise. Merchants without an in-house tagging engineer typically need an agency for initial setup and ongoing maintenance.
Right for: Magento 2 stores with an in-house or agency GTM engineer who wants full container control and is comfortable maintaining templates as ad platform APIs evolve. Value 8/10 for the right team. Extension free; Stape hosting $17/month plus compute.
WeltPixel Meta Pixel CAPI Addon (standalone)
Separate from the GA4 Pro bundle discussed above, WeltPixel also sells the CAPI addon as part of its addon ecosystem. The dual-tracking capability, sending events via both browser and server simultaneously with a shared event ID, is the technically correct approach to Meta deduplication and it works as described when configured properly.
What does not work: same structural issues as the broader WeltPixel ecosystem. The addon requires GA4 PRO as a prerequisite. No bot filtering before forwarding. No standalone pricing path for merchants who only need Meta CAPI without the full GA4 implementation. For stores already committed to a different GA4 solution, this creates a dependency conflict.
Right for: Stores already running WeltPixel GA4 PRO who need to add Meta server-side without rebuilding their tracking layer. Value 5/10 as a standalone consideration; better as part of the WeltPixel stack. Addon pricing on top of GA4 PRO license.
Anowave GA4 GTM Extension
Anowave's extension is the broadest single-extension tracking solution for Magento 2 in terms of platform coverage. One module handles GA4, Google Ads Enhanced Conversions, Meta Pixel and CAPI, TikTok Pixel, Bing UET, Reddit Pixel, Twitter/X Pixel, and includes a built-in GDPR consent layer compatible with Consent Mode v2. That is genuinely more platform coverage than any other individual Magento extension.
What does not work: the consolidation creates a fragility problem. Every time any one of those platform APIs changes, the entire extension requires an update. One delayed patch can break Meta CAPI, your GA4 implementation, and Google Enhanced Conversions simultaneously. Community reviews are mixed on support response time when urgent issues arise. No bot filtering. The built-in CMP, while functionally present, loads as a third-party script by default and inherits the CDN-blocking vulnerability described in the five layers.
Right for: Magento 2 stores running multi-platform paid media who want a single extension to maintain, accept the fragility tradeoff, and have a developer to manage updates. Value 6/10. Pricing requires direct quote; typically in the $299-499 range for the full suite.
Magefan Google Tag Manager Extension
Magefan's GTM extension is the cleanest pure-data-layer implementation for Magento 2. It pushes a complete ecommerce data layer to GTM, including all standard GA4 ecommerce events, without trying to configure the destination tags itself. This approach separates concerns correctly: Magento handles the data layer, GTM handles the tag logic.
What does not work: you need GTM expertise to configure the server-side tags. Magefan's extension is a data provider, not a tracking solution. No bot filtering. No CMP. No CAPI configuration included. The server-side setup requires a separate GTM container, separate Cloud Run hosting, and separate configuration of each platform's server-side tag. Multiple G2 reviews note that the documentation assumes GTM familiarity most Magento merchants do not have.
Right for: Technical teams who want clean data layer separation and will handle all tag management independently. Value 7/10 for the right team. Around $129 one-time license.
BSS Commerce GA4 Extension
BSS Commerce's GA4 module takes a different approach: it sends data directly to GA4 without GTM, using Measurement Protocol for server-side events. This removes the GTM dependency, which simplifies the setup for merchants who want GA4 without learning GTM. The direct Measurement Protocol approach means events bypass the browser-side GTM container entirely.
What does not work: removing GTM also removes flexibility. Reconfiguring which events fire or how parameters are mapped requires a developer to modify the extension, not just a GTM interface change. No Meta CAPI, no TikTok, no multi-platform. No bot filtering. The Measurement Protocol implementation has a known industry-wide quirk: if the client ID is not passed correctly from the browser session, Measurement Protocol events land as a separate user in GA4 rather than merging with the browser session, fragmenting the funnel report.
Right for: Magento 2 stores that need GA4 only, want to avoid GTM complexity, and have a developer for ongoing maintenance. Value 5/10. Pricing around $99 one-time license.
Scommerce Mage GA4 GTM Extension
Scommerce's extension covers the widest geographic compliance footprint of any Magento extension reviewed here. It explicitly handles Microsoft Bing Ads Enhanced Conversions, Pinterest Tracking, Snapchat Pixel, Webgains affiliate tracking, AWIN floodlight, and Twitter/X Pixel alongside the standard GA4, Meta, and TikTok stack. For stores running affiliate programs or non-standard ad platforms, that coverage matters.
What does not work: the breadth creates the same maintenance problem as Anowave. The Microsoft UET consent implementation requires an additional script because UET does not natively respect GTM consent mode settings, which is called out in their own documentation. No bot filtering. No first-party CMP. The extension has strong reviews on specific features but thin documentation on the consent mode mapping for non-Google platforms, leaving compliance gaps for EEA advertisers running Bing or Pinterest.
Right for: Magento 2 stores with affiliate programs or Bing-heavy paid media needing broad platform coverage in a single extension. Value 6/10. Pricing around $199 one-time license.
Tracklution
Tracklution is not a Magento extension but a standalone server-side CAPI platform at €31/month that connects to Magento via webhook or API. As a managed service rather than a self-hosted extension, it removes the Magento-update dependency problem. When Meta changes its CAPI spec, Tracklution patches their service, not your Magento installation.
What does not work: no bot filtering before event forwarding. No analytics. No CMP. You still need a consent layer on the Magento side and you are responsible for ensuring consent signals are respected before triggering the webhook. The webhook-based integration means events are sent after the Magento order is created, which works for purchase tracking but has limitations for upper-funnel events like AddToCart or ViewContent that require a client-side component to capture. SOC 2 and ISO 27001 certified, which is relevant for enterprise procurement.
Right for: EU-focused agencies managing multiple Magento clients who want a managed CAPI service with strong compliance credentials and do not need bot filtering. Value 7/10. €31/month Starter.
SignalBridge
SignalBridge is a managed server-side tracking platform at $29/month that explicitly includes bot filtering alongside its CAPI delivery. Of the managed platforms in this category, it is the only one besides DataCops that names bot detection as a feature rather than an afterthought. Setup is platform-agnostic and works with Magento 2 via script tag installation.
What does not work: the bot filtering specification is less transparent than DataCops in terms of what IP database is used and what categories are filtered. No first-party CMP. No analytics beyond the funnel visibility included in the platform. For Magento 2 stores with Hyvä themes or custom checkout flows, the script-tag install approach may require developer validation to confirm all events fire correctly through the custom frontend.
Right for: Magento 2 stores that want a low-cost managed CAPI service with basic bot filtering and do not need analytics or consent management. Value 7/10. $29/month.
DataCops
DataCops is a unified first-party architecture: analytics, bot-filtered CAPI, and a first-party CMP in one script tag plus one CNAME record. For Magento 2, the install path is the same as any other platform: add the script to your store's head, configure the CNAME at your DNS provider, done in 5-30 minutes. No GTM dependency. No Magento extension to update when Adobe releases 2.4.9 or PHP 8.5.
The structural difference from every Magento extension on this list is where bot filtering happens. DataCops runs 361,873,948,495 IP addresses in a live database: 146.4 billion datacenter and cloud IPs, 11.9 billion VPN endpoints, 620 million proxy and anonymizer IPs. Bot traffic is identified and excluded before any CAPI event fires. The conversions reaching Meta, Google, TikTok, and LinkedIn from your Magento store have had the machine traffic removed upstream. Project Andromeda, fully deployed October 2025, acts on contaminated audience signals within hours, not weeks. Sending it clean data from the start means it optimizes toward real buyers.
The CMP is first-party. It loads from your own subdomain (datacops.yourdomain.com), not from a CDN that uBlock Origin or Brave blocks. The banner loads on every session. EU visitors see a TCF 2.2 compliant consent interaction. After rejection, anonymous analytics continue to flow because anonymous data is always legal. Identifiable data waits for consent. Non-EU traffic gets cookieless persistent identity resolution by default with no banner required, because no legal requirement exists.
CAPI starts at Business ($49/month) and covers Meta, Google Ads Enhanced Conversions, TikTok Events API, and LinkedIn Insight CAPI from one pipeline. There is no per-platform add-on pricing. The Free and Growth plans ($0 and $7.99/month) include first-party analytics, bot detection, and the first-party CMP without CAPI.
What does not work and where DataCops is not the right call: DataCops is a newer brand compared to WeltPixel, Amasty, and Magefan. SOC 2 Type II is in progress, not complete, which matters for enterprise procurement processes requiring certification today. If you need Magento-native features like admin panel configuration or Marketplace-based installation, DataCops installs via script tag rather than Composer, which some technical teams prefer not to mix with their extension management process. If you have an in-house GTM engineer who wants full container control and already has an sGTM container running, Stape's infrastructure may be a better fit. If you are a pure GA4 analytics shop with no paid media budget, Meetanshi or BSS Commerce at a one-time cost beats a monthly subscription.
Right for: Magento 2 stores running multi-platform paid media who want bot-filtered CAPI, first-party analytics, and a compliant CMP in one install, without managing extension compatibility across Magento updates. Value 9/10. Business $49/month.
Elevar
Elevar is Shopify-native and does not support Magento 2. It appears in this comparison because agencies frequently evaluate it alongside Magento options when clients are on mixed platform stacks or considering migration. For Shopify plus stores above $500K monthly GMV, Elevar's order-level identity resolution and millisecond-accuracy purchase tracking is the most precise pixel-to-CAPI implementation in the market. For Magento 2, it is not relevant.
Right for: Shopify stores at $200/month+ scale, not Magento. Value N/A for Magento 2.
Triple Whale
Triple Whale is an attribution dashboard, not a CAPI delivery layer. It sits downstream of your tracking infrastructure and visualizes the data your pixels and CAPI connections send. On Magento 2, Triple Whale typically connects via the Shopify data connector (if you have a combined setup) or via direct API. It does not solve the upstream problems described in this article. If your Magento CAPI is forwarding bot conversions, Triple Whale charts them attractively.
Right for: Attribution reporting once the upstream data is clean. Value 5/10 as a complement to clean CAPI infrastructure. $179/month annual.
Northbeam
Same category as Triple Whale. Northbeam is a media mix model and attribution platform that requires clean event data to produce useful output. It does not replace a CAPI layer and does not run on Magento 2 natively. At $1,500/month entry, the cost only makes sense if the underlying conversion data is trustworthy.
Right for: Large Magento 2 stores with clean CAPI infrastructure already in place who need cross-channel attribution modeling. Value 4/10 without a clean upstream. $1,500/month entry.
Google Tag Gateway
Google Tag Gateway launched January 2026 as a free, native Google solution for server-side GA4 and Google Ads Enhanced Conversions. It runs on GCP, Cloudflare, or Akamai with one-click provisioning and no Cloud Run billing. For Magento 2 stores that only need Google CAPI and nothing else, it is a legitimate free option.
What does not work: Google-only. No Meta CAPI, no TikTok, no LinkedIn. No bot filtering. No CMP. It is infrastructure, not a solution. The Magento 2 side still requires a GTM extension to push events to the gateway, and you still need consent mode configured correctly for the EEA.
Right for: Magento 2 stores running Google Ads exclusively who want to minimize costs and have technical resources for the setup. Value 8/10 for the specific use case. Free.
Meta 1-Click CAPI (April 2026)
Meta launched free, hosted CAPI on April 15, 2026. Zero setup, Meta hosts the server-side connection, no Cloud Run costs. For Magento 2, you connect it through Meta Business Suite and it sends purchase events using the Measurement Protocol signal from your pixel.
What does not work: Meta-only. No bot filtering, which means Meta's algorithm continues to receive unfiltered traffic from your Magento store. No multi-platform. EMQ optimization is basic relative to matched first-party data. If you are already running a paid CAPI tool for Meta only, this makes that tool obsolete. If you need multi-platform or bot filtering, this does not help.
Right for: Magento 2 stores that only advertise on Meta and need a zero-cost CAPI setup. Free.
Feature comparison
| Tool | Setup | Bot filter | First-party CMP | Meta CAPI | Google CAPI | TikTok | Entry CAPI price | Magento native | |
|---|---|---|---|---|---|---|---|---|---|
| DataCops | Script + CNAME | 361B IP DB | TCF 2.2, first-party subdomain | Yes | Yes | Yes | Yes | $49/month | No (script tag) |
| WeltPixel GA4 PRO + CAPI | Extension + addon | No | Basic (native Magento) | Yes | Yes (addon) | Yes (addon) | No | $249+ license | Yes |
| Magefan Meta Pixel + CAPI | Extension | No | No | Yes | No | No | No | ~$149 license | Yes |
| Amasty GTM + GA4 | Extension + dependency | No | Via Amasty GDPR (separate) | No (separate) | Yes | No | No | ~$229 license | Yes |
| Meetanshi GA4 | Extension | No | No | No | No | No | No | N/A | Yes |
| Stape sGTM + extension | Extension + sGTM config | No | No | Via template | Via template | Via template | Via template | $17/month + compute | Yes (extension) |
| Anowave GA4 GTM Suite | Extension | No | Built-in (third-party CDN) | Yes | Yes | Yes | No | ~$299+ license | Yes |
| Magefan GTM | Extension (data layer only) | No | No | Via GTM | Via GTM | Via GTM | Via GTM | Setup cost | Yes |
| BSS Commerce GA4 | Extension | No | No | No | No | No | No | N/A | Yes |
| Scommerce GA4 GTM | Extension | No | No | Yes | Yes | Yes | No | ~$199 license | Yes |
| Tracklution | Webhook integration | No | No | Yes | Yes | Yes | No | €31/month | No |
| SignalBridge | Script tag | Basic | No | Yes | Yes | Yes | No | $29/month | No |
| Google Tag Gateway | GTM + gateway config | No | No | No | Yes | No | No | Free | No |
| Meta 1-Click CAPI | One-click | No | No | Yes | No | No | No | Free | No |
When NOT to use DataCops
If you need SOC 2 Type II certification on a vendor before procurement approval, DataCops is in progress on that certification and cannot provide it today. Tracklution (ISO 27001 certified) or an existing enterprise vendor is the right call until that changes.
If your team has a dedicated GTM engineer and already runs a well-maintained sGTM container, you may get more value from keeping that infrastructure and adding Stape's Magento 2 extension as the bridge. Full container control is worth something to teams that have the skills to use it.
If you are running Magento 2 exclusively for B2B with no paid social media and your primary tracking need is GA4 for product analytics, the one-time cost of Amasty or WeltPixel beats a monthly subscription for your use case.
If you only advertise on Meta and have no near-term plans to expand to Google, TikTok, or LinkedIn, Meta's free 1-click CAPI plus Magefan's Meta extension handles the basics at a cost DataCops cannot beat.
The question to ask before you install anything
The Magento 2 extension ecosystem has a tool for every individual problem. A tool for GA4. A tool for Meta CAPI. A tool for consent. A tool for GTM. None of them was built to be audited as a system, and none of the vendors is accountable for what happens at the joints between their extension and the next one.
Pull your Meta Events Manager right now. Look at the Event Match Quality score on your Purchase event. Look at the volume. Cross-reference it with your actual order count from Magento. If your CAPI purchase volume is higher than your order count, you have double-counting from a deduplication failure between your pixel and your server-side extension. If your EMQ is below 7.0, the first-party data your CAPI is sending is not matching real humans. If you cannot find the bot-filtered breakdown anywhere in your tracking stack, there is not one: every bot that executed JavaScript on your Magento store is in Meta's audience data right now.
The pipe is not the problem. The water is. How much of what your Magento tracking stack sent to Meta last month can you prove came from a real human?