Blog

US State Privacy Laws: What Developers Need to Know in 2026

Key Takeaways

  • 19 US states have enacted comprehensive privacy laws as of 2026
  • Most state laws follow an opt-out model (unlike GDPR opt-in), but requirements vary significantly
  • Global Privacy Control (GPC) is legally required in California, Colorado, Connecticut, Montana, and Texas
  • Universal opt-out mechanisms are becoming the standard, with more states adding GPC requirements each year
  • A single website serving all 50 states needs to handle different consent rules per visitor location

The US Privacy Landscape: No Federal Law, 19+ State Laws

Congress has debated federal privacy legislation for years. The ADPPA passed a House committee in 2022 before stalling. The APRA was introduced in 2024 and met the same fate. As of March 2026, no federal bill has passed.

The sticking point is preemption: California wants to keep its stronger protections, industry wants a single standard. Until they agree, the patchwork grows.

For developers, three practical consequences:

  1. You cannot build one consent experience and call it done. Different states mean different rights, different GPC requirements, different consent models.
  2. You need geo-detection. Your site must determine visitor location and apply the correct model automatically.
  3. The surface area keeps expanding. Every legislative session, new states pass laws. Your implementation must be adaptable.

Opt-Out (most common). Businesses collect and process data by default. Consumers opt out of sales, targeted advertising, and profiling. Analytics and marketing scripts run by default, but you must honor opt-out requests and universal opt-out mechanisms like GPC.

Opt-In for Sensitive Data. Most states require affirmative consent before processing sensitive data (health, biometric, precise geolocation, children's data). This creates a hybrid: opt-out for standard data, opt-in for sensitive data.

Notice-Only. Utah uses a more permissive model. Provide notice of data practices, but consent requirements are lighter.

See how ConsentStack handles geo-detection

State-by-State Comparison

StateLawEffectiveConsent ModelGPC RequiredKey Unique Provisions
CaliforniaCCPA/CPRA2020/2023Opt-out (opt-in for minors <16)YesBroadest scope. Private right of action. CPPA enforcement. "Do Not Sell or Share" link.
VirginiaVCDPAJan 2023Opt-outNoAG only. Narrow "sale" definition (monetary).
ColoradoCPAJul 2023Opt-out (opt-in sensitive)YesFirst besides CA to mandate universal opt-out. Biennial assessments.
ConnecticutCTDPAJul 2023Opt-out (opt-in sensitive)YesCovers nonprofits. Health data is sensitive. Broad "sale" definition.
UtahUCPADec 2023Notice-only / Opt-outNoMost business-friendly. $25M revenue threshold. No opt-in for sensitive data.
TexasTDPSAJul 2024Opt-out (opt-in sensitive)YesNo revenue threshold. Applies to any entity in Texas.
OregonOCPAJul 2024Opt-out (opt-in sensitive)YesCovers nonprofits. Transgender/nonbinary data is sensitive.
MontanaMCDPAOct 2024Opt-out (opt-in sensitive)YesLow threshold (50,000 consumers).
DelawareDPDPAJan 2025Opt-out (opt-in sensitive)NoCovers nonprofits. Low threshold (35,000 consumers).
IowaICDPAJan 2025Opt-outNoNarrowest scope. 90-day cure period. No opt-in for sensitive data.
New HampshireNH SB 255Jan 2025Opt-out (opt-in sensitive)NoClose to Connecticut model.
New JerseyNJ SB 332Jan 2025Opt-out (opt-in sensitive)NoFinancial data is sensitive. No cure period.
TennesseeTIPAJul 2025Opt-out (opt-in sensitive)NoAffirmative defense for NIST-aligned privacy programs.
MinnesotaMNCDPAJul 2025Opt-out (opt-in sensitive)YesRight to question automated decisions. Data inventories required.
MarylandMODPAOct 2025Opt-out (opt-in sensitive)NoStricter data minimization. One of the more restrictive laws.
IndianaICDPAJan 2026Opt-out (opt-in sensitive)NoVirginia model.
KentuckyKCDPAJan 2026Opt-out (opt-in sensitive)NoVirginia/Connecticut hybrid.
NebraskaNDPAJan 2026Opt-out (opt-in sensitive)NoNo revenue or volume threshold.
Rhode IslandRIDPAJan 2026Opt-out (opt-in sensitive)NoTransparency reports required.

Coming soon: Vermont (Jul 2026, includes private right of action), Wisconsin (Jan 2026), Michigan and Pennsylvania (pending).

See all supported regulations

Where States Diverge: Key Provisions

Sale of Personal Data

Narrow definition (monetary only): Virginia, Utah, Iowa, Indiana. Sharing data with an ad platform for free may not qualify as a "sale."

Broad definition (includes non-monetary exchange): California, Colorado, Connecticut, Texas, Oregon, Delaware, New Jersey, Maryland. Sharing data with an ad platform in exchange for ad services qualifies.

The safest approach: treat any data sharing with third-party advertising platforms as a potential "sale" and provide opt-out universally.

Sensitive Data

Nearly every state treats sensitive data differently, requiring opt-in consent. Universal categories include: racial/ethnic origin, religious beliefs, health data, sexual orientation, genetic/biometric data, and children's data.

State-specific additions: California adds SSN, financial accounts, precise geolocation, and mail/message contents. Oregon adds transgender/nonbinary status. Connecticut, Colorado, and Texas add precise geolocation (within 1,750 feet). New Jersey adds financial data. Maryland restricts sensitive data processing to what is strictly necessary.

If your app collects any of these, you need opt-in consent, and the categories depend on the visitor's state.

Children's Data

All states defer to COPPA for under-13. California requires opt-in for under-16 for sale/sharing. Most other states classify children's data as sensitive requiring opt-in. If your site has users under 16, California imposes the strictest requirements.

Global Privacy Control: Which States Require It

As of 2026, these states legally require businesses to honor GPC: California, Colorado, Connecticut, Texas, Montana, Oregon, and Minnesota.

When GPC is detected from a visitor in a requiring state:

  1. Suppress sale/sharing of personal data immediately
  2. Block targeted advertising scripts
  3. Do not require additional confirmation
  4. Apply the opt-out with no processing delay

The complexity grows with the number of requiring states. You need to detect the signal, determine visitor location, check state requirements, and apply the response. A CMP that handles geo-detection and GPC automatically eliminates this burden. ConsentStack detects GPC and applies the correct opt-out behavior based on visitor state across all 19 US states.

Learn how ConsentStack handles GPC | Google Consent Mode v2 setup guide

Geo-Detection: The Core Engineering Problem

With 19 states imposing different requirements, geo-detection is not optional. Without it, you either apply California's strictest requirements to everyone (legally safe but operationally burdensome) or apply the weakest and hope for the best (not defensible).

How It Works

CDN-level headers (best approach). Cloudflare provides CF-IPCountry and CF-Region. AWS CloudFront and Fastly offer similar headers. State-level accuracy is 95%+ for US visitors.

IP geolocation databases. MaxMind GeoIP for server-side lookup.

User self-selection (fallback only). A dropdown asking visitors to confirm their state. Not recommended as the sole method.

The implementation flow: visitor arrives, CDN determines state, consent logic maps state to applicable law, correct experience renders, GPC is checked, preferences are stored.

ConsentStack handles geo-detection across 19 US states using Cloudflare headers at the CDN edge. When new state laws take effect, the mapping updates on ConsentStack's side. No code changes on your end.

See how ConsentStack handles geo-detection

Practical Implementation Strategies

FeatureWhy It MattersRed Flag
US states supportedMore = less manual work"CCPA and VCDPA only"
GPC support7+ states require it"Coming soon"
Geo-detection granularityMust detect at state levelCountry-level only
Script blockingOpt-out must stop data sharingBanner-only, no enforcement
Update frequencyLaws change constantlyLast updated 2024

ConsentStack covers 32 regulations across 19 US states on every tier, including free. See features | Best consent management platforms compared

Strategy 2: Build Your Own

Requires: state detection service, consent model engine mapping 19+ states, GPC handler, opt-out UI, script blocking, consent storage, and ongoing maintenance. A senior developer spending 4-6 weeks on initial build plus monthly maintenance costs far more than $29/month. Build custom only if no CMP meets your needs.

Strategy 3: Apply California Rules Universally

Treat every US visitor as California. Single implementation, no geo-detection needed, always compliant with the strictest standard. Tradeoffs: over-compliance for weaker states, California-specific language may confuse visitors, and some states have unique provisions California does not cover (Oregon's transgender protections, Tennessee's NIST defense). Works for smaller teams willing to accept the tradeoffs.

Get started with ConsentStack

Frequently Asked Questions

Conclusion

US state privacy laws are accelerating. From one law in 2020 to 19 in 2026. Geo-detection, consent model mapping, GPC support, and ongoing maintenance across growing jurisdictions make hardcoding state-specific logic unsustainable.

ConsentStack handles it all. Geo-detection across 19 US states, automatically applying the correct consent model. GPC honored in every requiring state. Opt-out mechanisms and sensitive data flows configured through the dashboard. When new laws take effect, mappings update automatically.

One script tag. Under 10KB. Every US state privacy law covered. From $0/month.

Start free. No credit card. No sales call.