Age Verification Law in 2026: What Platforms Face Now
Age verification law is now enforced in the UK, US states and the EU. What applies to your platform — and what to build first if you're behind.
Age verification law is now enforced in the UK, US states and the EU. What applies to your platform — and what to build first if you're behind.
Photo via Unsplash
Age verification law spent a decade as a debate about feasibility. That debate is over. The UK has an enforced regime with a regulator and revenue-based penalties, a large and growing number of US states have their own statutes, and the EU has been pushing minors-protection expectations through the Digital Services Act. If your platform hosts adult or age-restricted material, the question is no longer whether to build a gate but which gate survives scrutiny.
This piece summarises where things stand in August 2026, what the differences between regimes mean for architecture, and what to build first if you are behind.
The short version
- Self-declaration is dead everywhere that matters.
- The UK standard is outcome-based: accurate, robust, reliable, fair.
- US state statutes vary in trigger and remedy — private rights of action are the sharp edge.
- Search interest tracks enforcement, not legislation: "age verification law" averages 1,900 US searches a month.
- Fail-closed is the only defensible default.
Two things converged. Regulators acquired enforcement powers rather than guidance-issuing roles, and age-assurance technology got good enough that "impossible" stopped being credible.
The search data tracks the shift rather neatly. A Google Ads Keyword Planner run we made in August 2026 puts "age verification law" at an average of 1,900 US searches a month with a competition index of 1, and shows a marked spike in mid-2025 — precisely when UK enforcement began in earnest. People search statutes when statutes start affecting them.
The Online Safety Act 2023 requires services publishing or hosting pornographic content to use highly effective age assurance. Ofcom has framed that as four properties: technically accurate, robust, reliable and fair.
Notably, no approved vendor list. You choose the method and you defend it. Facial age estimation, photo ID, credit-card checks, mobile-operator signals and digital identity wallets have all been discussed as capable of meeting the bar when implemented properly. A date-of-birth box meets none of it.
Penalties reach £18 million or 10% of qualifying worldwide revenue, and Ofcom holds business disruption powers aimed at payment and ancillary providers. We went through the full duty set in the UK Online Safety Act deep-dive.
The criterion people underweight is fairness. A method that works poorly for a predictable group is a compliance problem, not an acceptable trade-off. Practically, that argues for offering more than one route.
There is no single federal age-verification statute. Instead, a growing set of state laws, differing on three axes that actually change your build:
| Axis | Variation | What it changes |
|---|---|---|
| Trigger | Share of site content that is adult material | Whether you are in scope at all |
| Method | Some name acceptable categories; some say "commercially reasonable" | How much latitude you have |
| Remedy | Attorney-general enforcement, private right of action, or both | Your realistic risk exposure |
| Data handling | Some prohibit retention of identity documents | Your vendor architecture |
Table: the four axes on which US state age-verification statutes differ, and the design decision each one drives. Scope and remedy matter more than the method language.
Private rights of action are the sharp edge. Regulator enforcement is finite and prioritised; private litigation is neither. And the data-retention restrictions in several statutes point the same way as good practice anyway: verify through a provider, keep the result, do not keep the document.
Separately, the TAKE IT DOWN Act — federal, FTC-enforced — imposes a 48-hour removal duty for non-consensual intimate imagery. It is not an age law, but it lands on the same platforms and the same engineering team. See the compliance guide.
The Digital Services Act does not prescribe an age-verification method either, but its obligations around protection of minors and risk mitigation for very large platforms push in the same direction, and the Commission has been developing guidance and age-verification approaches at EU level. If you serve the EU, the reasonable planning assumption is convergence rather than divergence.
Generation platforms have a wrinkle that hosting platforms do not: there are two age questions.
The second splits again. Creator identity and age must be verified at onboarding. And the content must never depict a minor regardless of who requested it — which is a content-evaluation problem, not an identity one.
LikeWard treats these as separate controls. Creator activation is gated on recorded identity evidence — a profile cannot go live without it. Generation refuses with age_verification_required when the requesting account is unverified. And minors contexts are one of four non-waivable platform prohibitions, evaluated before the age gate, so a prohibited request from a fully verified adult account is still refused.
That ordering matters more than it sounds. Evaluate prohibitions after the age gate and a verified adult becomes the exception that swallows the rule.
Practical guidance rather than a vendor list:
Gating signup instead of the action. Users arrive through deep links, invites and API paths.
Trusting a session forever. Sessions outlive the assumptions behind them.
One method only. Fails the fairness criterion and your uptime target simultaneously.
Storing ID documents. Restricted in several statutes, and a breach liability everywhere else.
Failing open during an outage. The single most common finding in reviews we hear about.
Assuming synthetic content is out of scope. It is not. Ask the unlicensed generation risk analysis how that argument goes.
Related reading: the UK Online Safety Act deep-dive, the deepfake law round-up, and the card network consent rules guide — because your acquirer will ask about age assurance too. LikeWard's own gate is described on the verification page.