Popgot - Shop Smarter for Everyday Essentials

Shop Flood/Can LED Light Bulbs (BR30/E26) per count with Popgot AI

Our dedicated team combines automated scanning with hands-on review, analyzing thousands of bulbs to ensure accuracy. We meticulously verify details like Bulb Shape (confirming it's truly BR30), Light Technology (LED only), Base Type (E26), and Equivalent Wattage (around 65W), ensuring every product listed genuinely fits the Flood/Can LED Light Bulb category.

Selection Criteria

Cheaper than 95%
Better rated than 99%
$2.01 / ct
4.65.3k
6
count
No Fast Free Shipping
Popgot Pick— balances unit price, ratings & size

Here are the 26 products we considered starting at $1.39 per ct

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

amazon23walmart3target--costco--samsclub--
$1.39per ct
36
count
$49.99
4.5349
amazon
36 Pack Dimmable BR30 LED
$1.39per ct
36
count
$49.99
4.5349
amazon
36 Pack BR30 LED Bulbs
$1.42per ct
24
count
$33.99
4.6287
amazon
DAYBETTER BR30 2700K Dimmable 24-Pack
$1.42per ct
12
count
$17.07
4.42
amazon
Sigalux BR30 LED Bulbs, 12-Pack
$1.43per ct
4
count
$5.73
54% off
3.9571
walmart
Great Value 9W BR30 Floodlight 4-Pack
$1.50per ct
6
count
$8.99
4.451
amazon
EDISHINE BR30 LED Bulb 6 Pack
$1.54per ct
24
count
$36.99
4.5944
amazon
TJOY 24 Pack BR30 LED Bulbs
$1.56per ct
12
count
$18.67
4.4648
amazon
dalattin 12 Pack BR30 LED Bulbs
$1.58per ct
24
count
$37.98
4.5944
amazon
TJOY 24 Pack BR30 LED Bulb
$1.62per ct
16
count
$25.94
4.6304
walmart
Great Value LED BR30 E26 16-pack
$1.62per ct
16
count
$25.94
4.5344
walmart
Great Value BR30 LED 16-Pack
$1.67per ct
6
count
$9.99
4.451
amazon
EDISHINE BR30 LED 6-Pack
$1.67per ct
12
count
$19.99
4.6376
amazon
dalattin 12 Pack BR30 LED Bulbs
$1.67per ct
18
count
$29.99
4.5944
amazon
TJOY BR30 LED Flood Bulb 18-Pack
$1.67per ct
24
count
$39.99
4.5681
amazon
DAYBETTER 24-Pack BR30 Dimmable Bulbs
$1.67per ct
24
count
$39.99
4.4648
amazon
dalattin 24 Pack BR30 LED Bulbs
$1.67per ct
36
count
$59.99
4.5349
amazon
MASTERY MART 36-Pack BR30 LED
$1.75per ct
12
count
$20.99
4.5204
amazon
VOLIVO LED Flood Light 12 Pack BR30
$1.75per ct
24
count
$41.99
4.5349
amazon
24 Pack BR30 LED Bulbs
$1.75per ct
24
count
$41.99
4.5349
amazon
24 Pack BR30 Dimmable LED Flood
$2.01per ct
6
count
$12.08
4.65.3k
amazon
Amazon Basics BR30 LED 6-Pack
Popgot Pick
$2.33per ct
6
count
$13.99
4.5944
amazon
TJOY 6-Pack BR30 LED Flood Light
$2.33per ct
6
count
$13.99
4.4648
amazon
dalattin 6 Pack BR30 Flood Lights
$2.50per ct
6
count
$14.98
Cyber Monday Deal
4.6124
amazon
DAYBETTER 6 Pack Dimmable BR30 LED Bulbs
$2.50per ct
4
count
$9.99
4.6124
amazon
DAYBETTER 4 Pack BR30 LED Bulbs
$2.67per ct
6
count
$15.99
Ends in17:57:42(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.5682
amazon
DAYBETTER BR30 LED 6-Pack 65W