Popgot - Shop Smarter for Everyday Essentials

Shop 9V Batteries per count with Popgot AI

Our dedicated team, aided by sophisticated automation, meticulously reviews thousands of 9V battery listings. We analyze key attributes like Battery Voltage, Battery Type, Product Category, and Battery Chemistry to ensure every product is genuinely a standard 9V battery, filtering out unrelated items, accessories, or incompatible rechargeable variants based on their Charging Feature.

AlkalineLithium-Ion

Selection Criteria

Cheaper than 96%
Better rated than 59%
Popgot Pick— balances unit price, ratings & size

Here are the 22 products we considered starting at 60¢ per ct

60¢per ct
100
count
$59.98
4.012
amazon
9V Super Heavy-Duty Batteries 100-Count
60¢per ct
1010
count
$59.99
4.315.4k
amazon
PKCELL 9V Dry Battery 100-Count
79¢per ct
24
count
$18.99
4.4497
amazon
YKM 24 Pack 9V Batteries
79¢per ct
24
count
$18.99
4.315.4k
amazon
9V Carbon Batteries 24-Count
83¢per ct
12
count
$9.99
4.4610
amazon
EVEREADY 9V Heavy-Duty 12 Pack
90¢per ct
10
count
$8.99
4.315.4k
amazon
PKCELL 9V Carbon Zinc Battery
94¢per ct
8
count
$7.49
4.5530
amazon
PILOCEL 9V Alkaline 8 Pack
96¢per ct
24
count
$23.00
4.710.8k
amazon
ACDelco 24-Count 9V Batteries
$1.00per ct
8
count
$7.99
4.52.2k
amazon
EBL 9V Batteries 8 Pack
Popgot Pick
$1.08per ct
48
count
$51.99
4.69.4k
amazon
Allmax 9V 48-Count Batteries
$1.22per ct
24
count
$29.33
4.7240.4k
amazon
Amazon Basics 24-Pack 9V Batteries
$1.24per ct
12
count
$14.90
Limited time deal
4.311
amazon
VEVOR 9V Alkaline Batteries 12-Pack
$1.25per ct
12
count
$14.97
4.7142
walmart
Great Value 9V Alkaline Batteries, 12 Pack
$1.25per ct
8
count
$9.98
4.62.9k
amazon
Brand 9V Alkaline 8-Pack
$1.25per ct
4
count
$4.99
4.5638
amazon
9V Batteries 4 Pack
$1.25per ct
8
count
$9.99
4.7532
amazon
Voniko 9V Alkaline 8 Pack
$1.25per ct
8
count
$9.99
4.6859
amazon
POWEROWL 9V Alkaline 8 Pack
$1.25per ct
24
count
$29.97
4.51.5k
amazon
Impecca 9V Alkaline 24-Pack
$1.25per ct
12
count
$14.99
4.7333
amazon
PKCELL 9V Batteries, 12 Count
$1.25per ct
20
count
$24.99
5.03
amazon
Eveready 9V Super Heavy Duty 20 Pack
$1.39per ct
8
count
$11.11
4.6820
amazon
Powermax 8-Count 9V Batteries
$1.59per ct
8
count
$12.69
Ends in17:59:33(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.7240.4k
amazon
Amazon Basics 8-Pack 9V Alkaline Batteries