Who Really Pays for the Gun Lobby? (Hint: Not Who You Think)

The pro-gun side is a membership organization. The gun-safety side is one billionaire.

By GoodVote Data Desk

Who Really Pays for the Gun Lobby? (Hint: Not Who You Think)

The gun-control debate is usually framed as the National Rifle Association versus the American public. The money tells a different, more asymmetric story. On one side sits a sprawling network of pro-gun committees that raise small amounts from many donors. On the other sits a gun-safety movement that is funded, to a startling degree, by one man.

Pro-gun vs. gun-safety, by cycle

Aggregating committee spending from our topic warehouse:

CyclePro-gun spend ($)Gun-safety spend ($)
201668,991,3083,424,609
201811,154,22912,372,604
202036,262,63026,329,220
202224,921,55112,451,591
202414,451,12119,499,820

Source: topic_cycle_totals, topic_id = 'gun_lobby', summing direct contributions and support and oppose independent expenditures by stance.

The headline number is the flip in 2024: for the first time in the modern cycle series, gun-safety committee spending ($19.5M) exceeded pro-gun spending ($14.5M). That is not because the pro-gun side collapsed. It is because one donor has, for a decade, been quietly bankrolling the other side.

The single-donor asymmetry

Michael Bloomberg has given roughly $1.45 billion to federal committees over the cycles in our dataset. We are not using that number to claim $1.45B of "gun lobby" spending — the vast majority of it funded his 2020 presidential run ($1,089,243,472 to Mike Bloomberg 2020, Inc.) and his broader Democratic-aligned super PACs. But a meaningful share moved directly into gun-safety infrastructure:

Bloomberg recipient (gun-safety vertical)Lifetime ($)
Independence USA PAC155,767,376
Everytown – Demand a Seat PAC7,000,000
Everytown for Gun Safety Victory Fund1,300,000

Independence USA is Bloomberg's personal super PAC; its issue platform lists gun safety first. Everytown is the advocacy organization Bloomberg founded in 2014. Just those three vehicles account for $164,067,376 of direct Bloomberg money flowing into the gun-safety wing of federal politics.

For context, the entire 2024 cycle pro-gun committee spend in our warehouse was $14,451,121. One donor's cumulative gun-safety infrastructure investment is over 11 times the pro-gun side's total spend in the most recent cycle.

The pro-gun side is a membership organization; the gun-safety side is a billionaire

The largest identifiable individual pro-gun donor in our attribution data gave $55,950 across all cycles. Not $55 million. $55,950.

That is not an accident of naming or attribution. It is a structural fact: pro-gun money raises from many, in small amounts, through NRA-PVF, Gun Owners of America, and corporate PACs like Daniel Defense and SIG Sauer. Gun-safety money, by contrast, is extraordinarily concentrated. After Bloomberg, the next-largest individual gun-safety donor in our attribution tables is Connie Ballmer, at $12.25 million oppose — and she is one of only a handful of donors above the $1M line.

Top attributed gun-safety individual donorsOppose ($)
Michael Bloomberg (all cycles, all vehicles)~1.45 billion*
Connie Ballmer12,250,000
Daniel Pritzker1,000,000
Amy Abrams525,000
David Abrams525,000

(*Bloomberg's attributed oppose figure reflects all of his Democratic-aligned committee giving, including his 2020 presidential self-funding; the gun-specific portion is in the preceding table.)

The Lessig question, from both sides

When a single donor funds one side of an issue at the scale Bloomberg funds gun safety, the standard populist critique — too much money in politics — runs in an unfamiliar direction. Most Americans support stricter gun laws in every major poll. So the unusual concentration of donor money is funding the majoritarian position, not the minority one.

That is still not democracy. It is still a system where one household's checkbook can outweigh the organized small-dollar opposition 10-to-1. The lesson isn't "this specific donor is bad." The lesson is that under the current rules, issue outcomes are downstream of which side finds a billionaire first.

Methodology
-- Gun-lobby committee spending by cycle and stance
SELECT cycle, stance, total_spending
FROM `goodvote-466412.fec_staging_fec_staging.topic_cycle_totals`
WHERE topic_id = 'gun_lobby' ORDER BY cycle, stance;

-- Bloomberg's gun-safety-specific committee flows
SELECT c.cmte_nm, SUM(x.transaction_amt) amt
FROM `goodvote-466412.fec_staging_fec_staging.stg_contributions_keyed` x
JOIN `goodvote-466412.fec_staging_fec_staging.stg_committees` c USING(cmte_id)
WHERE x.canonical_name = 'BLOOMBERG, MICHAEL'
  AND (LOWER(c.cmte_nm) LIKE '%everytown%' OR c.cmte_nm = 'INDEPENDENCE USA PAC')
GROUP BY c.cmte_nm ORDER BY amt DESC;

-- Top attributed individual donors, gun-lobby topic
SELECT d.canonical_name, SUM(t.pro_amount) pro, SUM(t.oppose_amount) opp
FROM `goodvote-466412.fec_staging_fec_staging.donor_topic_attribution` t
JOIN `goodvote-466412.fec_staging_fec_staging.stg_donors_normalized` d USING(donor_key)
WHERE t.topic_id = 'gun_lobby'
GROUP BY d.canonical_name ORDER BY (pro+opp) DESC LIMIT 10;

-- Largest pro-gun individual (sanity)
SELECT d.canonical_name, SUM(t.pro_amount) pro
FROM `goodvote-466412.fec_staging_fec_staging.donor_topic_attribution` t
JOIN `goodvote-466412.fec_staging_fec_staging.stg_donors_normalized` d USING(donor_key)
WHERE t.topic_id='gun_lobby' AND t.pro_amount > 0
GROUP BY 1 ORDER BY pro DESC LIMIT 5;

The donor_topic_attribution table attributes a donor's dollars to topics based on the recipient committee's topic stance. Because Bloomberg's 2020 presidential committee was tagged gun_safety (his platform's signature issue), his self-funded presidential run is included in the topic-attributed total. The table above separates his gun-safety-specific vehicles from that bucket.

#transparency#gun-control#mega-donor#data