Popgot - Shop Smarter for Everyday Essentials

Shop Sunscreen per fluid ounce with Popgot AI

Our team and advanced automation analyze thousands of sunscreens. For instance, we meticulously examine Primary Product Function to differentiate dedicated sunscreens from products with secondary SPF, and verify critical details like Product Format and SPF Rating, ensuring our lists feature truly effective sun protection you can rely on.

Selection Criteria

Cheaper than 100%
Better rated than 97%
Popgot Pick— balances unit price, ratings & size

Here are the 27 products we considered starting at --

* We may earn a small commission from affiliate links below at no cost to you.

amazon13walmart11target2costco--samsclub1
39¢per fl oz
32
fl oz
$12.48
4.6495
walmart
Equate Sport Sunscreen SPF 50, 32 oz
43¢per fl oz
68
fl oz
$20.49
Limited time deal
4.49.0k
amazon
Solimo Sunscreen Lotion 8 fl oz 6-Pack
49¢per fl oz
8
fl oz
$3.90
Limited time deal
4.49.0k
amazon
Solimo Sport Sunscreen, 8 fl oz
50¢per fl oz
8
fl oz
$4.02
Limited time deal
4.49.0k
amazon
Solimo Sport Sunscreen SPF 50, 8oz
56¢per fl oz
6.7
fl oz
$3.73
Limited time deal
4.724.1k
amazon
Neutrogena Sunscreen SPF 70 6.7 fl oz
Popgot Pick
57¢per fl oz
16
fl oz
$9.12
4.6430
walmart
Equate SPF 50 Sunscreen Lotion, 16 fl oz
57¢per fl oz
416
fl oz
$36.48
4.6430
walmart
Equate Ultra SPF 50, 16oz 4-Pack
61¢per fl oz
39.1
fl oz
$16.67
4.5237
samsclub
Member's Mark SPF 50 9.1oz 3pk
62¢per fl oz
28
fl oz
$9.94
4.634.6k
amazon
Banana Boat Sport Ultra SPF 30 8oz
62¢per fl oz
8
fl oz
$4.97
4.634.5k
amazon
Banana Boat Sport Ultra SPF 30, 8oz
64¢per fl oz
8
fl oz
$5.12
4.4285
walmart
Equate Baby Sunscreen Lotion SPF 50, 8 oz
64¢per fl oz
8
fl oz
$5.12
4.446
walmart
Equate Kids Sunscreen Lotion SPF 50
67¢per fl oz
8
fl oz
$5.36
4.6742
walmart
Equate Sport Sunscreen Lotion SPF 50
67¢per fl oz
8
fl oz
$5.36
4.5261
walmart
Equate Sport Sunscreen Lotion SPF 30, 8 oz
69¢per fl oz
8
fl oz
$5.48
4.3124
walmart
Equate Ultra Light SPF 50, 8oz
69¢per fl oz
16
fl oz
$10.99
3.472
target
up&up Sport Sunscreen SPF 30 16oz
69¢per fl oz
16
fl oz
$10.99
2.8208
target
up&up Sport Sunscreen SPF 50 16oz
69¢per fl oz
6.5
fl oz
$4.48
55% off
4.8283
walmart
Neutrogena Beach Defense SPF 50, 6.5oz
69¢per fl oz
6.5
fl oz
$4.48
4.710.7k
amazon
Neutrogena Beach Defense SPF 50, 6.5oz
70¢per fl oz
8
fl oz
$5.58
4.634.5k
amazon
Banana Boat SPF 50 Lotion 8oz
77¢per fl oz
25.5
fl oz
$8.48
4.7856
walmart
Equate Sport Sunscreen Spray, SPF 30, 11 oz, 2 Pack
77¢per fl oz
25.5
fl oz
$8.48
4.72.8k
walmart
Equate Sport Sunscreen SPF 50 Twin Pack
86¢per fl oz
8
fl oz
$6.88
Ends in20:57:01(function(f) {var _np=(window.P._namespace("GoldboxUDPAssets"));if(_np.guardFatal){_np.guardFatal(f)(_np);}else{f(_np);}}(function(P) { function isComponentRegistered(componentName) { var isRegistered = false; P.now("registrationStarted:" + componentName).execute(function (loaded) { isRegistered = !!loaded; }); return isRegistered; } function setComponentRegistered(componentName) { P.declare("registrationStarted:" + componentName, true); } if (!isComponentRegistered("count-down-controller-detailpage-dealBadge")) { setComponentRegistered("count-down-controller-detailpage-dealBadge"); P.when('jQuery').register('count-down-controller-detailpage-dealBadge', function($) { function countDown(timer) { var $timer = $(timer); var targetDateStr = $(timer).attr("data-target-time"); var targetDate = Date.parse(targetDateStr); var dealBadgeSupportingText = '#dealBadgeSupportingText'; $(dealBadgeSupportingText).attr("aria-hidden","true"); var interval = null; interval = setInterval(function () { var diffMillis = targetDate - Date.now(); var diffSeconds = Math.floor(diffMillis / 1000); if (diffSeconds < 0) { $timer.text('00:00'); clearInterval(interval); $(dealBadgeSupportingText).removeAttr("aria-hidden"); } else { var hours = Math.floor((diffSeconds / (60 * 60)) % 24); var minutes = Math.floor((diffSeconds / 60) % 60); var seconds = Math.floor(diffSeconds % 60); var hoursStr = ('0' + hours).slice(-2); var minutesStr = ('0' + minutes).slice(-2); var secondsStr = ('0' + seconds).slice(-2); var timeStr = ''; if (hours > 0) { timeStr = [hoursStr, minutesStr, secondsStr].join(':'); } else { timeStr = [minutesStr, secondsStr].join(':'); } $timer.text(timeStr); updateOffscreenText(hours, minutes, seconds) } }, 1000); } var offscreenTextEnum = { hours: 0, minutes: 1, seconds: 2, }; var offscreenTextIDs = [ '#deals_countdown_timer_from_hours_screen_reader_label', '#deals_countdown_timer_from_minutes_without_seconds_screen_reader_label', '#deals_countdown_timer_from_seconds_screen_reader_label', ]; var offscreenTextTemplates = offscreenTextIDs.map(function (id) { return $(id).text() }); var classHidden = 'aok-hidden'; var classOffscreen = 'aok-offscreen'; function updateOffscreenText(hours, minutes, seconds) { var type = getOffscrrenType(hours, minutes); var elementID = offscreenTextIDs[type]; var template = offscreenTextTemplates[type]; var text = template .replace('NO_OF_HOURS', hours) .replace('NO_OF_MINUTES', minutes) .replace('NO_OF_SECONDS', seconds); $(elementID).text(text); showOffscreenElement(elementID); offscreenTextIDs.filter(function (_, idx) { return idx != type; }).forEach(function (id) { return hideOffscreenElement(id) }); if (isTimerOver(hours, minutes, seconds)) { hideOffscreenElement(elementID); } } function getOffscrrenType(hours, minutes) { if (hours > 0) { return offscreenTextEnum.hours; } if (minutes >= 1) { return offscreenTextEnum.minutes; } return offscreenTextEnum.seconds; } function showOffscreenElement(elementID) { $(elementID).removeClass(classHidden).addClass(classOffscreen); } function hideOffscreenElement(elementID) { $(elementID).removeClass(classOffscreen).addClass(classHidden); } function isTimerOver(hours, minutes, seconds) { return hours == 0 && minutes == 0 && seconds == 0; } return { countDown : countDown }; }); } P.when('A', 'count-down-controller-detailpage-dealBadge', 'ready').execute(function(A, countDownController) { var timers = document.querySelectorAll('.detailpage-dealBadge-countdown-timer'); A.each(timers, function(timer) { countDownController.countDown(timer); }); }); }));
4.87.2k
amazon
Hawaiian Tropic SPF 50, 8 Ounce
93¢per fl oz
28
fl oz
$14.95
4.8937
amazon
Banana Boat Sport Ultra SPF 15, 8oz
$1.12per fl oz
26
fl oz
$13.47
4.813.8k
amazon
Banana Boat Sport Ultra SPF 30 Twin Pack 12oz
$1.15per fl oz
8
fl oz
$9.17
4.82.5k
amazon
Hawaiian Tropic Sunscreen SPF 15 8 OZ
$1.16per fl oz
26
fl oz
$13.97
4.822.4k
amazon
Banana Boat Sport Ultra SPF 50, 6oz Twin