⏱️ Lectura: 10 min
A New Mexico court hit Meta with a $567 million bill for damaging children’s mental health on Facebook and Instagram. The ruling by Judge Bryan Biedscheid, issued Thursday, August 6, 2026, adds to the $375 million fine a jury imposed in March, bringing the total Meta must pay in this case to $942 million.
📑 En este artículo
The decision closes the second phase of a trial that in March found Meta knew its platforms were harming minors and concealed what it knew about child sexual exploitation on its network. The court also ordered concrete operational changes, from new age verification tools to compliance reports every six months.
TL;DR
- A New Mexico court ordered Meta to pay an additional $567 million for damages to minors’ mental health.
- The amount adds to the $375 million fine from March 2026, bringing the total to $942 million.
- Judge Bryan Biedscheid allocated $420 million to treatment services for young people in New Mexico.
- The rest of the fund will cover prevention, training, and monitoring over the next five years.
- Meta must develop an age-prediction model for children under 13 within the next two years.
- The company will report its compliance every six months to the state of New Mexico.
- Meta announced it will appeal the ruling and said it works to keep users safe.
- The case follows a 2023 Guardian investigation into child sex trafficking on Meta’s platforms.
What happened
Judge Bryan Biedscheid, of New Mexico’s state court, ordered on Thursday that Meta allocate $567 million to a fund to repair the damage to children’s mental health caused by its platforms. Of that amount, $420 million will go to treatment services for young people in New Mexico, while the rest will cover awareness campaigns, prevention, detection services, and other costs over the next five years.
This fund adds to the $375 million fine a jury imposed on Meta in March 2026, the maximum penalty available at that stage of the trial. With Thursday’s order, the total Meta must pay in this case rises to $942 million.
Beyond the money, the court ordered a series of product changes. Facebook and Instagram will have to build banners and informational screens that clearly explain their protection features, best practices, and tools for reporting inappropriate comments. Those changes, along with an educational campaign in New Mexico, will be subject to review by the state.
New Mexico Attorney General Raúl Torrez praised the ruling: “This case was always about protecting children, defending families, and making sure one of the world’s largest tech companies can’t profit from practices that endanger young people without consequences.” A Meta spokesperson responded that the company “disagrees with the ruling” and plans to appeal, adding that they work hard to keep users safe on their platforms.
Context and history
The March 2026 trial was the first to find Meta liable for acts committed on its platform. It followed a Guardian investigation published in 2023 that revealed how Facebook and Instagram had become marketplaces for child sex trafficking. Several former Meta content moderators told the outlet there were cases where they flagged content linked to child grooming, but those reports were never escalated internally.
The trial’s second phase, which began in May 2026, focused on what remedies the court should impose. Prosecutors asked the judge for structural changes at Meta aimed at curbing addictive features, improving age verification, and preventing child sexual exploitation through default privacy settings and greater oversight.
Technical details: how age verification will work
One of the most discussed points of the ruling is age verification, precisely because the court acknowledged a legal limit: federal child privacy laws prevent Meta from applying direct age verification tools to children under 13. The judge also noted that requiring verification only from Meta, and not other social networks, would be “inequitable and unfairly prejudicial” to the company.
Instead of requiring identity documents, the court ordered Meta to keep improving its age-assurance tools in New Mexico, which already use artificial intelligence to estimate a person’s age based on signals such as who their friends are and what type of content they post and consume. Meta must also attempt to develop, within the next two years, a dedicated prediction model for children under 13.
In addition, Meta will have to request proof of age from Instagram and Facebook users in New Mexico it estimates could be under 13. If the system determines a user is under 13, or under 18 without being able to estimate a specific age, Meta must treat them as under 13 or under 18 until it verifies their real age. The company must also partner with schools or a child safety organization to create a portal where school staff can report users who might be under 13, and must delete the personal information it has collected from users under that age.
flowchart TD
A["New Instagram or Facebook signup"] --> B["AI model estimates age from friend and content signals"]
B --> C{"Signals of under 13"}
C -- "Yes" --> D["Proof of age requested"]
D --> E{"Age verified"}
E -- "No" --> F["Account treated as under 13"]
E -- "Yes, older" --> G["Account enabled without restrictions"]
F --> H["Collected personal data deleted"]
⚠️ Heads up: The court itself acknowledged that federal child privacy laws prevent Meta from requiring identity documents from children under 13, which is why the ordered solution is AI inference, not document verification.
| Legal front | Case status | Main focus |
|---|---|---|
| New Mexico (state) | Remedies ruling issued August 6, 2026 | Child sex trafficking and exploitation, plus addictive design |
| Tennessee (state) | Trial started July 2026 | Compulsive Instagram use and eating disorders |
| Oakland, California (federal) | Trial scheduled for August 2026 | Consolidated claims from school districts and families |
How to audit how your own app handles minors’ data
Although the ruling is specific to Meta, the logic it requires (flagging at-risk accounts, treating users as minors when in doubt, and deleting personal data of underage users) is a pattern any team that manages user accounts can audit today, without waiting for a court order.
A simple first step is a function that flags accounts as potentially under 13 based on the declared date of birth:
function esMenorDeTrece(fechaNacimiento) {
const hoy = new Date("2026-08-07");
const edad = hoy.getFullYear() - fechaNacimiento.getFullYear();
return edad < 13;
}
console.log(esMenorDeTrece(new Date("2015-03-10"))); // true
This is just the starting point: as Meta’s own case shows, a declared date of birth isn’t enough, which is why the ruling requires additional signals like the friend network and consumed content. A more realistic example is auditing your user base for accounts without verified age that already show some risk signal, and flagging them preventively:
const { Client } = require("pg");
async function auditarCuentasMenores() {
const client = new Client({ connectionString: process.env.DATABASE_URL });
await client.connect();
const { rows } = await client.query(`
SELECT id, edad_verificada, senal_riesgo_menor
FROM usuarios
WHERE edad_verificada IS NULL
AND senal_riesgo_menor = true
`);
console.log(`Unverified accounts with risk signal: ${rows.length}`);
for (const cuenta of rows) {
await client.query(
"UPDATE usuarios SET tratar_como_menor = true WHERE id = $1",
[cuenta.id]
);
}
await client.end();
}
auditarCuentasMenores();
The script depends on Node.js’s pg driver, which installs the same way on Windows, macOS, and Linux with npm install pg. The query prioritizes the same principle the New Mexico court applied: when in doubt, treat the account as if it belonged to a minor, not the other way around.
To verify these controls are actually active in production, reviewing the code isn’t enough: it needs to be confirmed with a direct database query, for example by counting how many accounts ended up flagged as tratar_como_menor = true after running the audit, and comparing that number against the total accounts without verified age.
💡 Tip: If your product has underage users, first review what personal data you store on them and for how long: it’s the point that escalates fastest in litigation, as shown by the New Mexico ruling on deleting data of children under 13.
Impact on children’s mental health and Meta’s business
The $942 million Meta must pay in New Mexico is a small fraction of its profits: the company reported about $60 billion in profits in 2025. Even so, the ruling represents a new setback for Meta, which faces a growing wave of lawsuits from families of minors affected by social media across various U.S. states.
In Tennessee, a trial that began last month accuses Meta of ignoring internal warnings about compulsive Instagram use among teenagers, linked to eating disorders and depression, among other adverse effects. Meta is also preparing for a federal trial in Oakland, California, later this month.
Laura Edelson, assistant professor at Northeastern University specializing in social media and cybersecurity, described the New Mexico ruling as the first of several dominoes that could fall for Meta: “The United States isn’t going to pass a law banning social media, but if companies like Meta know they’re causing harm to users through their product design, states are finally finding a way to contain it.”
💭 Key point: The $567 million fund isn’t a criminal fine, it’s money allocated directly to mental health treatment for minors in New Mexico over the next five years.
What’s next
Meta has already indicated it will appeal the ruling, so the amount and obligations could change in higher courts before taking effect. Meanwhile, the company must report its progress on complying with the protection measures every six months to the state of New Mexico.
The outcome of the Tennessee and Oakland trials will be key to determining whether the New Mexico pattern (holding Meta accountable for product design decisions, not just specific content) repeats in other jurisdictions.
📖 Summary on Telegram: View summary
Try it yourself: check your Instagram or Facebook account settings right now under Settings > Minor Accounts to see what oversight controls are already active today.
Frequently Asked Questions
How much does Meta have to pay in total for this case?
Meta must pay $942 million in total: the $375 million fine from March 2026 plus the $567 million ordered by the court on August 6, 2026.
What will the money be spent on?
Of the new $567 million, $420 million will go to mental health treatment services for young people in New Mexico, and the rest to prevention, detection, and awareness campaigns over five years.
Will Meta require ID documents to verify age?
Not directly from children under 13, because federal child privacy laws prevent it. Instead, it must use artificial intelligence to estimate age and request proof of age when it detects risk signals.
Will Meta appeal the ruling?
Yes. A company spokesperson said Meta disagrees with the decision and plans to appeal, though it maintained that it works to keep users safe on its platforms.
Are there other similar lawsuits against Meta?
Yes. Meta faces a trial in Tennessee that began last month over compulsive Instagram use among teenagers, and another federal trial scheduled in Oakland, California, for later in August 2026.
References
- The Guardian: original coverage of the New Mexico court ruling against Meta.
- FTC, COPPA: the federal child privacy law that limits direct age verification for children under 13.
- Wikipedia: historical context on the Children’s Online Privacy Protection Act.
- Meta (about.fb.com): the company’s official press room.
📱 Like this content? Follow @programacion on Telegram for daily tech content in Spanish: quick summaries, fresh content every day.
Imagen destacada: Foto de Wesley Tingey en Unsplash
0 Comments