# Privacy and data law: the rules behind targeted ads and personalization
A 14-year-old signs up for a streaming platform, watches three horror movies, and by the next morning the platform's ad partner is bidding on her profile to serve makeup ads. That single chain, sign-up, viewing history, ad auction, touches at least three major privacy regimes at once. Getting it wrong is not a theoretical risk: in 2019, the FTC fined Google and YouTube $170 million for collecting data on children without parental consent, one of the largest privacy penalties in US history at the time. This lesson walks through what compliance teams actually build to avoid being next.
Media and entertainment businesses run on personal data by design. Recommendation engines (the algorithms that decide what Netflix or Spotify shows you next) need viewing and listening history. Ad networks (systems that match advertisers to audiences, like Google's or The Trade Desk's) need behavioral profiles. Both depend on data that regulators now treat as sensitive by default.
Three regimes dominate the landscape a compliance team must mapmapUsing software to automate repetitive marketing tasks and campaigns, enabling personalisation at scale across channels like email, web, and social.Voir la définition complète → to:
GDPR applies to any company processing personal data of people in the EU, regardless of where the company is headquartered. It is enforced by national Data Protection Authorities (DPAs), coordinated loosely through the European Data Protection Board.
For a recommendation engine, GDPR forces two structural choices:
1. Legal basis for processing. Companies must pick a justification under Article 6, most commonly "consent" or "legitimate interest." Personalization based on inferred traits (mood, political leaning, health-adjacent viewing habits) usually needs explicit consent, not just legitimate interest, because it can produce sensitive inferences.
2. Data minimization. Only collect what the personalization actually needs. A music app cannot justify pulling contact lists for a recommendation feature it doesn't use.
GDPR also grants individuals the right to access, rectify, erase, and port their data, plus the right to object to profiling used for direct marketing (Article 21). A subscriber can demand Netflix explain, in broad terms, why an algorithm recommended a given genre, and can opt out of ad-based profiling entirely.
Fines are structured to be painful at scale: up to €20 million or 4% of global annual revenue, whichever is higher. Meta has faced some of the largest penalties under GDPR, including a €1.2 billion fine from Ireland's Data Protection Commission in 2023 over EU-to-US data transfers, per the Irish DPC's public decisions.
California's approach is structurally different from GDPR. Instead of requiring consent upfront, CCPA (as strengthened by CPRA in 2023) gives consumers the right to opt out of the "sale or sharing" of their personal information, a category interpreted broadly enough to include most behavioral advertising.
This is why nearly every US media site now shows a "Do Not Sell or Share My Personal Information" link, often built as a standardized signal called Global Privacy Control (GPC), which browsers send automatically to tell sites to stop sharing data.
CPRA created a dedicated regulator, the California Privacy Protection Agency (CPPA), the first US agency built specifically for privacy enforcement. It also added a category of "sensitive personal information" (precise geolocation, sexual orientation, etc.) that requires an explicit opt-in limit on use, closer to GDPR's stricter posture.
Other states have followed with their own laws (Virginia's VCDPA, Colorado's CPACPACost Per Acquisition: the total cost to generate one customer or conversion, computed by dividing total spend by the number of acquisitions.Voir la définition complète →, and others), each with slightly different thresholds, so compliance teams typically build to the strictest common denominator rather than maintaining fifty state-specific flows.
COPPA is narrower but stricter: it applies to any online service that is directed at children under 13, or that has actual knowledge it is collecting data from a child under 13. It is enforced by the FTC, and violations can trigger civil penalties per violation, adjusted periodically (as of the FTC's most recent inflation adjustments, penalties can run over $50,000 per violation, and companies with millions of child users can face totals in the hundreds of millions).
For ad networks and streaming platforms, COPPA forces concrete engineering decisions:
The practical result: YouTube now requires creators to mark content "made for kids," which automatically disables personalized ads and comments on that content, a direct structural response to the FTC settlement, documented on the FTC's case page.
Strip away the legal language and three regimes converge on similar engineering artifacts:
A simplified version of what a consent check might look like before an ad request fires:
def can_target_ad(user):
if user.age_band == "under_13":
return False # COPPA: no behavioral ads to known children
if user.region == "EU" and not user.has_marketing_consent:
return False # GDPR: consent required
if user.region == "CA" and user.opted_out_of_sale:
return False # CCPA/CPRA: honor opt-out
return TrueThis is deliberately simplified, but it reflects the real logic: region and age determine which rule fires, and the system defaults to restriction when signals are missing or conflicting.
Vérification des acquis
1. Why does the FTC's large penalty against a media platform for collecting children's data without parental consent matter conceptually for compliance teams?
2. A media company is based in Canada but has European subscribers whose viewing data feeds its recommendation engine. Does GDPR apply?
3. What is the core structural reason media companies are described as 'ground zero' for privacy law?
4. Select ALL correct answers about the three privacy regimes described (GDPR, CCPA/CPRA, COPPA).
Sélectionnez toutes les réponses correctes.
5. Select ALL correct answers about why the opening scenario (a 14-year-old's viewing history reaching an ad auction) is legally significant.
Sélectionnez toutes les réponses correctes.
They don't align neatly. GDPR assumes opt-in by default; CCPA assumes opt-out. COPPA cares only about age, not geography. A global platform ends up running parallel compliance logic: an EU user sees a consent wall before any tracking starts, a California user sees a passive opt-out link, and any user flagged as a child anywhere sees no behavioral ads at all, regardless of region.
This is also why "personalization" and "advertising" are often split internally. Many platforms use first-party datafirst-party dataData collected directly from your own customers and prospects through your own channels: your most reliable and privacy-compliant source.Voir la définition complète → (what you watched on their own service) for recommendations under a broader legitimate-interest or product-necessity basis, while walling off third-party ad targeting behind stricter, separate consent, because regulators and courts treat the two uses very differently in terms of risk.