Amazon Marketing Cloud Is Now Free for Sponsored Products Advertisers

April 27, 2026
by Cherry Rose

Amazon Marketing Cloud opened to every Sponsored Products advertiser on September 18, 2025 — no DSP contract, no $60K-a-year minimum. If you run Amazon Sponsored Ads of any kind, you now have free access to a clean room that joins your Amazon campaign data with whatever first-party data you upload. At unBoxed 2025, Amazon also extended the ad-traffic lookback window from 13 months to 25 months, with the international rollout completing in Q1 2026 — meaning WooCommerce brands in the EU, UK, and APAC are just now getting two full years of year-over-year Amazon Ads analysis inside the clean room. The catch is the upload pipeline, and most brands are paying $500 to $2,000 a month to an agency for a job a WooCommerce server-side stack handles on a daily cron.

The Sponsored Ads Tier Is the Real News

AMC has existed since 2021. Until September 18, 2025, it lived behind an Amazon DSP contract, which most WooCommerce brands could not justify. Direct access for Sponsored Products advertisers removes the DSP gate entirely. Sponsored Products, Sponsored Brands, Sponsored Display, and Sponsored TV campaigns are now auto-ingested into AMC the moment you log in (Sponsored TV was the last to join, added at Accelerate 2025). Your campaign-level data is already there waiting for you.

What is not in AMC is your WooCommerce order data. AMC’s clean-room model only becomes interesting when you join Amazon-side exposure with merchant-side outcomes. Without an upload pipeline, the new AMC tab is a nicer reporting interface for the campaign data you already had — useful, but not the unlock.

What “Free” Actually Means in AMC

AMC’s pricing is genuinely free for sponsored advertisers. The cost surface sits everywhere else.

The 100-user aggregation rule. Every AMC query output is gated behind a 100-user minimum aggregation threshold — no individual user data is ever returned. That is structurally fine for clean-room use; it is structurally awkward if your WooCommerce volume is small. A query that filters too tightly returns empty. If your store does fewer than 100 orders per month from Amazon-exposed users, AMC will mostly hand you NULL.

The SQL expertise gap. Eight out of ten marketing teams do not have SQL expertise (Eva Guru AMC Guide, 2026). The Amazon Ads Console UI does not write queries; the AMC interface is a SQL editor with documentation links. This is the gap that third-party platforms charge $500 to $2,000 a month to fill — Pacvue at the high end, Helium 10 at $300 to $800. Translation: most WooCommerce brands pay an agency for SQL, not for AMC.

Ads Agent helps but does not unblock. At unBoxed 2025, Amazon launched Ads Agent — a natural-language SQL generator powered by Amazon Bedrock — that turns “show me my top-performing audiences in Q4” into a runnable AMC query. It reduces query writing from hours to minutes. It does not solve the upload problem, which is the actual bottleneck for most brands.

The 90-day Console vs 25-month AMC gap. Amazon Ads Console retains only 90 days of historical data through the UI. AMC now retains 25 months. For Amazon-sourced campaign data, AMC makes warehouse export redundant. You no longer need to ETL Sponsored Products data into BigQuery purely for retention — AMC keeps it. What still belongs in BigQuery is everything that is not Amazon.

You may be interested in: The MMM Revolution Has a Shopify Problem — And Your WooCommerce Store Is Locked Out of the Privacy-Safe Attribution Future

The Reverse-Flow Case Nobody Else Is Writing About

Most AMC coverage assumes you sell on Amazon. The case that breaks the existing playbook is a WooCommerce brand that does not sell on Amazon but runs Amazon Sponsored Display, Sponsored TV, or DSP ads to drive traffic to its WooCommerce site. The Amazon side knows exposures; your WooCommerce side knows orders. The clean room is the only place those two halves can meet without sharing PII.

Three flows matter for this reader.

Flow A: Off-Amazon-only. The brand sells exclusively on woocommerce.com but uses Amazon Sponsored Display and DSP to drive traffic. AMC ingests Amazon ad exposures automatically; WooCommerce orders must be uploaded. The clean-room join is exposure-to-purchase across the two systems.

Flow B: Mixed. The brand sells on both Amazon and WooCommerce. Amazon-side orders are auto-ingested; WooCommerce orders are uploaded. AMC then lets you ask which Sponsored Products clicks ended up as purchases on WooCommerce instead of on Amazon — a question Amazon Attribution cannot answer cleanly.

Flow C: Off-Amazon for retention. The brand uses Amazon Ads to acquire and WooCommerce to retain. The 25-month lookback window matters most here — repeat purchase patterns are only legible with two years of joined data.

Every other AMC piece assumes Flow A’s mirror image (sold on Amazon, no off-Amazon site). The reverse flow is the gap, and it is the flow most off-Amazon WooCommerce brands actually run.

The Upload Payload Is Smaller Than the Agencies Suggest

Amazon’s Ads Data Upload API expects a flat, hashed payload. The required fields for matching WooCommerce orders to Amazon exposures are minimal:

  • hashed_email — SHA-256 of the customer’s lowercased email
  • hashed_phone — SHA-256 of E.164-formatted phone (optional but improves match rate)
  • order_id — Your WooCommerce order number; AMC uses this for deduplication
  • order_value — Decimal, in the order’s currency
  • currency — ISO 4217 code (USD, EUR, GBP)
  • event_time — ISO 8601 timestamp of order creation
  • event_type — “purchase” for orders, “page_view” or “add_to_cart” if uploading funnel data

That is the entire schema for an order upload. The complexity is not in the payload — it is in the cadence (24-hour batch is what AMC expects), retries, the JWT auth handshake, and matching Amazon’s exact normalization rules for email and phone before hashing. This is not where a $2,000-a-month line item should live for a WooCommerce store that already has a server-side tracking stack.

How a Server-Side WooCommerce Stack Handles AMC on a Cron

The Amazon Ads Data Upload API is structurally identical to Facebook CAPI, the GA4 Measurement Protocol, and Google Ads Enhanced Conversions. Same shape: hashed PII, an order identifier, a value, a timestamp. Same operational pattern: server-side capture at the order webhook, batched delivery on a schedule. If your stack already routes WooCommerce orders to GA4 and Meta CAPI server-side, AMC is one more outbound destination, not a new system to operate.

Here’s how you actually do this on WooCommerce. Transmute Engine™ is a first-party Node.js server — not a plugin — that runs on your subdomain (e.g., data.yourstore.com). The inPIPE plugin captures the WooCommerce order webhook; the Transmute Engine hashes PII per AMC’s exact normalization rules, batches orders into a 24-hour window, and posts to the Amazon Ads Data Upload API endpoint via outPIPE. Same pipeline that handles GA4 and CAPI; one more destination configured.

You may be interested in: BigQuery for WooCommerce Store Owners: Why Your Own Data Warehouse Beats Every Dashboard Limitation

AMC and BigQuery Are Complementary, Not Competing

The instinct after reading “AMC retains 25 months” is to wonder whether BigQuery export is still worth it. The answer is yes, because AMC owns one slice and BigQuery owns the rest. AMC is the right home for Amazon-side joins — campaign data, exposure data, and any first-party signal you choose to upload for clean-room queries. BigQuery is the right home for everything that is not Amazon: Google Ads, Meta CAPI, GA4, organic search, email. The two systems share inputs (the same hashed first-party order data) and serve different questions. AMC answers “what did Amazon traffic do on WooCommerce.” BigQuery answers everything else.

Export AMC outputs to BigQuery for retention beyond 25 months. Push WooCommerce orders to both AMC and BigQuery from the same server-side capture point. One pipeline, two destinations, neither system orphaned.

Key Takeaways

  • September 18, 2025 was the AMC unlock for Sponsored Ads advertisers. No DSP contract. No fee for the clean room itself.
  • The 25-month lookback rolled out internationally in Q1 2026. EU, UK, and APAC WooCommerce brands now get the same window the US opened in November 2025.
  • The 100-user aggregation rule limits AMC for stores below ~100 monthly Amazon-attributed orders. Below that volume, queries return NULL more often than insight.
  • The upload payload is small: hashed email, order_id, value, currency, event_time. Same shape as Facebook CAPI and GA4 Measurement Protocol.
  • Agencies charge $500-$2,000 a month for the Data Upload API wrapper. A server-side stack already running CAPI and GA4 server-side absorbs the job at marginal cost.

Frequently Asked Questions

Is Amazon Marketing Cloud actually free for Sponsored Products advertisers in 2026?

Yes — direct AMC access requires no DSP contract and no separate fee. The cost is technical: AMC accepts uploads only via the Amazon Ads Data Upload API, which most marketing teams cannot operate without engineering help. The third-party platforms that wrap the API (Pacvue, Helium 10, etc.) are priced at $300-$2,000 per month.

What is the difference between Amazon Attribution and Amazon Marketing Cloud?

Amazon Attribution is a tag-based tool that measures Amazon Ads driving traffic to off-Amazon destinations like a WooCommerce store. AMC is a clean room that joins Amazon Ads exposure data with any first-party data you upload, then runs SQL on the join. Attribution gives you a number; AMC lets you ask custom questions.

Can I upload WooCommerce order data to AMC without hiring an AWS engineer?

The upload payload itself is small — hashed email, order_id, order_value, event_time — and the API is REST. The complexity is in scheduling, retries, and matching Amazon’s expected schema. A server-side tracking stack that already handles Facebook CAPI and GA4 Measurement Protocol is structurally identical to what AMC requires.

What does the 25-month AMC lookback window change for year-over-year analysis?

Before the unBoxed 2025 expansion, AMC ad-traffic data only went back 13 months — too short for a clean year-over-year comparison once you account for query lag. The 25-month window means a Q1 2026 analysis can now include both Q1 2025 and Q1 2024 data, and the international rollout in Q1 2026 brings EU, UK, and APAC brands into the same window the US has had since November 2025.

Does Amazon Ads Agent make AMC usable for non-technical WooCommerce store owners?

Ads Agent is Amazon’s natural-language SQL generator built on Bedrock and announced at unBoxed 2025. It reduces query development from hours to minutes for users who already know what they want to ask. It does not solve the upload problem — that still requires the Data Upload API.

Audit your WooCommerce-to-AMC pipeline before you sign a $500-a-month agency contract for the Data Upload API. Book a Transmute Engine trial at seresa.io.

Share this post
Related posts