Sale events are all about reaching the right customers at the right time.
But with so many promotions bombarding shoppers, how can you make your campaign stand out during a sale?
Amazon Marketing Cloud can help.
By leveraging AMC’s custom audience creation capabilities, you can target your DSP ads with laser precision, reaching high-intent customers who are most likely to convert.
In this blog, we will discuss 7 powerful custom audiences you can build with AMC to supercharge your DSP campaigns during any sales event, from Black Friday to back-to-school season.
Let’s first understand about Amazon Marketing Cloud Custom Audiences
What is AMC Custom Audiences?
AMC Custom Audiences, a feature within Amazon Marketing Cloud (AMC), empowers you to create particular target audiences for your advertising campaigns. You can use SQL queries or pre-made templates to build custom audiences groups, using different data types to target your ads based on customer behavior and interest.
6 Custom AMC Audiences that you can utilize:
Consumers who clicked on your Sponsored Product Ads but didn't purchase
This audience segment represents a valuable pool of potential customers who have shown initial interest in your product through clicking your Sponsored Ads. By retargeting them, you can reignite their consideration during a sales event. This approach allows you to:
- Showcase promotional offers: Highlight the discounts and special deals available during the sale to incentivize purchase.
- Remind them of the product: Re-introduce your product with compelling messaging and visuals to rekindle their interest.
SQL Query
/* Audience Instructional Query: Audiences who clicked Sponsored Products ads but have not purchased */
-- Optional update: To add Sponsored Products (SP) campaign filters, add the campaign names to campaign CTE and uncomment lines [1 of 2] and [2 of 2] below.
-- Note that you must use the campaign name, as we do not have a customer-facing campaign_id available for Sponsored Ads.
WITH SP (campaign) AS (
VALUES
('SP_campaign_name1'),
('SP_campaign_name2')
),
clicks AS (
SELECT
user_id
FROM
sponsored_ads_traffic_for_audiences
WHERE
clicks > 0
AND ad_product_type = 'sponsored_products'
/* AND campaign IN (SELECT campaign FROM SP) -- Optional update [1 of 2]: Uncomment this line if you want to filter by SP campaigns. */
),
purchases AS (
SELECT
user_id
FROM
amazon_attributed_events_by_traffic_time_for_audiences
WHERE
total_purchases > 0
AND ad_product_type = 'sponsored_products'
/* AND campaign IN (SELECT campaign FROM SP) -- Optional update [2 of 2]: Uncomment this line if you want to filter by SP campaigns. */
)
SELECT
user_id
FROM
clicks
WHERE
user_id NOT IN (
SELECT
user_id
FROM
purchases
)
Consumers who added the products to their cart but didn't complete the purchase
Shoppers who added items to their cart but didn’t make the purchase represent a prime opportunity for recouping lost sales during a sales event. This audience segment has demonstrated significant purchase intent and can be effectively re-engaged with targeted campaigns. Here’s how:
- Urgency and scarcity: Highlight limited-time discounts or low stock availability to create a sense of urgency and encourage them to complete the purchase before the offer expires.
- Missed Opportunities: Target people who have added a particular product to their cart but didn’t purchase it before the sale event.
SQL Query
/* Audience Exploratory Query: Added to cart but did not purchase */
-- Optional update: To filter by ASINs, add one or more ASINs to the list of ASINs below and uncomment lines [1 of 2] and [2 of 2]
WITH asins (asin) AS (
VALUES
/* Optional update: Populate the list of ASINs below to filter by ASINs */
('asin1'),
('asin2')
),
purchase AS(
SELECT
user_id,
MAX(event_dt_utc) AS purchase_dt_max
FROM
conversions
WHERE
event_subtype = 'order'
/* AND tracked_asin IN (SELECT asin FROM asins) -- Optional update [1 of 2]: Uncomment this line to enable ASIN filters. Leave the line commented to skip filters. */
GROUP BY
1
),
atc AS (
SELECT
user_id,
MAX(event_dt_utc) AS atc_dt_max
FROM
conversions
WHERE
event_subtype = 'shoppingCart'
/* AND tracked_item IN ( SELECT asin FROM asins ) -- Optional update [2 of 2]: Uncomment this line to enable ASIN filters. Leave the line commented to skip filters. */
GROUP BY
1
)
SELECT
COUNT(DISTINCT atc.user_id)
FROM
atc
LEFT JOIN purchase ON atc.user_id = purchase.user_id
WHERE
atc_dt_max > purchase_dt_max
OR purchase_dt_max IS NULL
Consumers who have added the products to their wish lists but haven't purchased them
AMC allows you to track various metrics, and a wish list is one of them. Consumers who add products to their wish lists or gift lists indicate a strong level of interest but might not be ready for immediate purchase. This segment holds immense potential for conversion during sales events. Here’s how to effectively target them:
- Promote sale-specific benefits: Emphasize the significant price drops or special deals available during the sales event, making the desired product more attractive.
- Time-bound offers: Create a sense of urgency by showcasing limited-time discounts or exclusive deals for wishlist items, encouraging purchases before the offer ends.
SQL Query
/* Audience Exploratory Query: Added to Wish List but did not purchase */
-- Optional update: To filter by ASINs, add one or more ASINs to the list of ASINs below and uncomment lines [1 of 2] and [2 of 2]
WITH asins (asin) AS (
VALUES
/* Optional update: Populate the list of ASINs below to filter by ASINs */
('asin1'),
('asin2')
),
purchase AS(
SELECT
user_id,
MAX(event_dt_utc) AS purchase_dt_max
FROM
conversions
WHERE
event_subtype = 'order'
/* AND tracked_asin IN (SELECT asin FROM asins) -- Optional update [1 of 2]: Uncomment this line to enable ASIN filters. Leave the line commented to skip filters. */
GROUP BY
1
),
wl AS (
SELECT
user_id,
MAX(event_dt_utc) AS wl_dt_max
FROM
conversions
WHERE
event_subtype = 'wishList'
/* AND tracked_item IN ( SELECT asin FROM asins ) -- Optional update [2 of 2]: Uncomment this line to enable ASIN filters. Leave the line commented to skip filters. */
GROUP BY
1
)
SELECT
COUNT(DISTINCT wl.user_id)
FROM
wl
LEFT JOIN purchase ON wl.user_id = purchase.user_id
WHERE
wl_dt_max > purchase_dt_max
OR purchase_dt_max IS NULL
Consumers who watched your Streaming TV Campaigns but not your DSP Display ad campaign
Research shows that people who see both Streaming TV and DSP Display ads are more likely to purchase those who only see one type of ad. Creating custom audiences to target consumers who saw your Streaming TV ads but not Amazon DSP ads can help you reach more potential customers, and increase sales during sales events. Here’s how to do it effectively:
- Focus on brand awareness and consideration: Since this audience segment hasn’t interacted with your display ads, prioritize building brand awareness and product familiarity. Utilize engaging visuals and compelling messaging to pique their interest.
SQL Query
/* Audience Instructional Query: Audience Exposed to DSP Streaming TV but not to Display Campaign */
WITH impressions_display AS (
SELECT
user_id
FROM
dsp_impressions_for_audiences
WHERE
campaign_id IN (
/* Update: Add Amazon DSP Display campaign_ids here */
'111122222'
)
AND impressions > 0
),
impressions_streaming AS (
SELECT
user_id
FROM
dsp_impressions_for_audiences
WHERE
campaign_id IN (
/* Update: Add Streaming TV campaign_ids here */
'111133333',
'111144444'
)
AND impressions > 0
)
SELECT
user_id
FROM
impressions_streaming
WHERE
user_id NOT IN (
SELECT
user_id
FROM
impressions_display
)
The High Intent Shoppers - Consumers who come under the high-volume customers segment
High-volume customers, those who consistently make frequent purchases, represent a goldmine for driving sales during events. They have established trust with your brand and demonstrated a clear purchase pattern. Here’s how to leverage this valuable audience segment:
- Personalized offers and rewards: Reward their loyalty with exclusive discounts, early access to sales, or tiered loyalty programs that incentivize them to spend more during the sales event.
This AMC audience segment query is available with the help of a Paid Subscription of Flexible Shopping Insights through AMC Paid Features.
-- Instructional Query: High Value Custom Segments --
/*
------- Customization Instructions -------
1. Update the tracked_asin filter in the purchase CTE.
2. Either provide an advertiser to include all the ASINs for
or provide a specific set of ASINs.
*/
WITH purchase AS (
SELECT
user_id,
SUM(total_product_sales) AS total_product_sales
FROM
conversions_all_for_audiences
WHERE
total_product_sales > 0
/* This condition helps filter in only
relevant purchase conversions and filter out all others */
/* REQUIRED UPDATE [1 OF 2]: Use either one of the below ASIN filters
based on your needs and comment out the other one. */
AND tracked_asin IN (
SELECT
DISTINCT tracked_asin
FROM
amazon_attributed_events_by_conversion_time_for_audiences
WHERE
advertiser_id IN ('111111111')
/* Update with actual advertiser_id */
)
AND tracked_asin IN ('111111111', '222222222')
/* Update with actual ASIN values */
AND user_id IS NOT NULL
GROUP BY
1
),
-- Calculate rank percentile
percentile_calc AS (
SELECT
user_id,
total_product_sales,
RANK() OVER (
ORDER BY
total_product_sales
) AS rnk,
(
RANK() OVER (
ORDER BY
total_product_sales
) * 100
) / COUNT(user_id) OVER () AS Percentile
FROM
purchase
)
SELECT
user_id
FROM
percentile_calc c
WHERE
/* REQUIRED UPDATE [2 OF 2]: : To modify the percentile,
set '50' to another integer value (between 1 and 100).
Values outside of this range with result in a NULL resultset. */
Percentile >= 50
Consumers who have viewed your product detail page multiple times
Consumers who have repeatedly visited your product detail page have exhibited a strong level of interest, making them a prime target audience for sales events. Here’s how to effectively capture their attention and convert them into paying customers:
Highlight sale-specific value propositions: Emphasize the significant price reductions or exclusive deals available during the sales event, making the product considerably more attractive.
- Address lingering doubts: Some repeat viewers might still have questions or concerns. Utilize targeted ad messaging or on-page content to address these potential hesitations directly. Provide clear information about product features and benefits, and answer any FAQs they might have.
SQL Query
/* Audience Measurement Query: Detail Page View Frequency */
/* Optional update: If you want to filter by ASINs, add one or more ASIN(s) to the list below
and uncomment line [1 of 1] */
WITH asins (asin) AS (
VALUES
(1111111111),
(2222222222)
),
dpvs AS (
SELECT
tracked_asin,
user_id,
SUM(conversions) AS dpv
FROM
conversions_for_audiences
WHERE
event_subtype = 'detailPageView'
/* AND tracked_asin IN (SELECT asin FROM asins ) -- Optional update [1 of 1]: To filter by ASINs, uncomment this line */
GROUP BY
1,
2
)
SELECT
tracked_asin,
/* Optional update: Modify the number of dpv_buckets, if necessary.
The default maximum is 5, which will result in 5 buckets. */
IF(dpv < 5, CONCAT('dpv_', dpv), 'dpv_5+') AS dpv_buckets,
COUNT(DISTINCT user_id) AS users_in_bucket,
SUM(dpv) AS dpv_in_bucket
FROM
dpvs
GROUP BY
1,
2
Ready to get started with Adbrew?
Use Adbrew's AMC dashboard to view new-to-brand metrics for all your sponsored and DSP campaigns with ease.
How Adbrew Can Help?
Amazon Marketing Cloud provides detailed data and useful insights, but it can be complex, especially for those unfamiliar with SQL.
Luckily, Adbrew has a straightforward solution to simplify your Amazon Advertising experience. Our easy-to-use AMC dashboard lets you quickly access practical insights for your brand.
We have a team of AMC Experts to help you create custom audiences for your DSP Campaigns, extract insights from AMC data, and manage your advertising campaigns.
Recent Posts
Amazon DSP Ads Optimization Software
Related Blogs
With the advent of Amazon Marketing Cloud (AMC), optimizing ad campaigns has become more versatile than ever. One notable feature […]
Amazon DSP, a Demand-Side Platform, allows advertisers to target audiences accurately using Amazon’s extensive shopper data. But before starting a […]
Amazon’s Demand-Side Platform (DSP) has become a game-changer for advertisers seeking to reach a massive audience of engaged shoppers. However, […]
Having spent considerable time working with Amazon DSP ads, we’ve observed a common challenge: achieving and measuring optimal results from […]
Are you a non-Amazon seller looking to tap into the power of Amazon’s advertising network? Amazon DSP, their Demand-Side Platform, […]
Sale events are all about reaching the right customers at the right time. But with so many promotions bombarding shoppers, […]
Amazon offers two different display advertising options for sellers: Sponsored Display ads and Amazon DSP ads. Selecting the right one […]
In today’s digital world, building a strong online brand is crucial for businesses of all sizes. While Amazon advertising solutions […]
Amazon Demand Side Platform unlocks programmatic advertising across many channels in the vast Amazon ecosystem and beyond, but often gets […]
Feeling trapped in the challenges of Amazon Sponsored Ads? Limited to engaging only with customers actively searching for your brand […]
If you are selling on Amazon, having a well-crafted remarketing strategy in place becomes crucial. Imagine re-engaging with potential customers […]
In digital advertising, Amazon DSP has emerged as a powerful tool for businesses to connect with their target audience and […]
Unlike Sponsored Ads, Amazon DSP offers the flexibility to run campaigns that guide users to either Amazon or non-Amazon destinations. […]
Whether you’re an advertiser seeking to connect with engaged shoppers worldwide or a publisher looking to monetize your ad inventory […]
Are you just starting with Amazon DSP (demand side platform) and feeling a bit lost in how to create Amazon DSP campaigns? We […]
Are you an e-commerce business owner looking for new and interesting methods to reach out to potential customers? Look no […]
We all utilize many different DSP ad types and targeting options available to advertisers in Amazon DSP. But how do […]
Amazon DSP (demand side platform) provides a multitude of targeting options, ranging from customer demographics, and behavioral targeting to contextual […]
Every advertiser wants their ads to reach a broad audience. However, showing an ad too many times to one person […]
With more and more shoppers turning to Amazon for online shopping, it is obvious why brands don’t want to limit […]