# Privacy rules that shape how insurers can use customer data
A life insurer's underwriting team wants to use an applicant's Fitbit step count to price a policy. A health insurer wants to buy credit scores to predict claims risk. Both moves are legal in some jurisdictions, restricted in others, and outright banned in a few. The difference is not the data itself. It is the regulatory wrapper around it, and getting that wrapper wrong can mean fines, voided contracts, or regulatory bans on a whole underwriting model.
This lesson walks through the three regulatory layers that govern insurance data use (GDPR, HIPAAHIPAAHealth Insurance Portability and Accountability Act, loi américaine imposant la protection des données de santé (PHI). Violations : amendes jusqu'à 1,9M$ par catégorie de violation., and US state insurance codes), then gives you the practical checks a data or compliance team runs before a new data source goes into production.
Insurance runs on discrimination, in the statistical sense: charging different people different prices based on risk. That is the business model. But laws in most developed markets say insurers cannot discriminate on certain axes (race, in most cases genetics, sometimes health status) even if that data would improve pricing accuracy.
So every new data source an insurer wants to use (wearables, credit data, social media, geolocation) has to pass two tests:
2. Is it legal to use it for this specific purpose, pricing or underwriting? (insurance law)
A data point can pass test 1 and fail test 2, or vice versa. That is why insurers run separate privacy and underwriting-fairness reviews.
GDPR (General Data Protection Regulation, EU law effective 2018) sets the ground rules for any company processing personal data of EU residents, insurers included. Key mechanisms relevant to underwriting:
Regulators enforcing this include national Data Protection Authorities (DPAs), such as France's CNIL or Germany's BfDI. Fines can reachreachThe number of unique people exposed to your message in a given period. Unlike impressions, reach counts each person once, no matter how often they see it.Voir la définition complète → 4% of global annual revenue for the most serious violations.
Practical effect: a European insurer wanting to use step-count data from a health app must get explicit, specific consent, explain how the data affects pricing, and let the customer opt out without losing the base product.
HIPAAHIPAAHealth Insurance Portability and Accountability Act, loi américaine imposant la protection des données de santé (PHI). Violations : amendes jusqu'à 1,9M$ par catégorie de violation. (Health Insurance Portability and Accountability Act, 1996, US federal law) is often misunderstood. It does not broadly regulate "health data." It regulates Protected Health Information (PHI) held by specific "covered entities": health plans, healthcare providers, and their business associates.
Key implication for insurers:
This is exactly why the step-count example in the hook is interesting: the same data point (steps per day) can be HIPAAHIPAAHealth Insurance Portability and Accountability Act, loi américaine imposant la protection des données de santé (PHI). Violations : amendes jusqu'à 1,9M$ par catégorie de violation.-protected if it flows through a health plan's wellness program, or essentially unregulated at the federal level if it comes from a wearable app the insurer purchased datapurchased dataData purchased from external aggregators, collected from audiences you don't own. It is bought or licensed rather than gathered through your own direct relationships.Voir la définition complète → access to via a third-party broker.
For a plain-English breakdown, the HHS HIPAA guidance page is the primary source of truth.
Because the US has no single federal insurance regulator (insurance is regulated state by state under the McCarran-Ferguson Act of 1945), each state's insurance department sets its own rules on what factors insurers can use in underwriting and pricing.
Two mechanisms matter most:
Practical effect: a credit score might be a perfectly legal rating factor for auto insurance in Texas, restricted in California, and banned outright in Massachusetts for certain lines. A national insurer needs a state-by-state rules engine, not one national policy.
Vérification des acquis
1. Why does insurance require both a privacy-law review and a separate insurance-law review before using a new data source?
2. An insurer wants to use social media activity to price auto policies. What is the most accurate way to frame the core regulatory tension described in the lesson?
3. Under GDPR, what must an insurer establish before processing an EU applicant's personal data for underwriting?
4. Select ALL correct answers: why is insurance treated as a special case under data privacy and anti-discrimination regulation compared to many other industries?
Sélectionnez toutes les réponses correctes.
5. Select ALL correct answers: which scenarios illustrate the lesson's point that the same data source can be treated differently depending on jurisdiction and purpose?
Sélectionnez toutes les réponses correctes.
Before any new data source goes live in an underwriting model, a mature insurance data governancedata governanceData governance is the set of policies, roles, and processes that ensure data is accurate, secure, well-defined, and used responsibly across an organization.Voir la définition complète → function runs a checklist like this:
1. Data lineage and consent audit
Where did this data come from? Was consent captured, and does it cover this specific use case (pricing, not just service delivery)?
2. Purpose-limitation test
Was the data collected for this purpose, or a different one? Using health app data collected for a wellness rewards program to silently adjust life insurance pricing typically fails GDPR's purpose limitation principle and many US state disclosure rules.
3. Disparate impact testing
Even a "neutral" variable (zip code, credit score, app usage patterns) can act as a proxy for race or income. Regulators increasingly require insurers to statistically test rating factors for this. A simplified version of this check:
# Simplified disparate impact ratio check
# Rule of thumb from EEOC's "four-fifths rule", adapted for insurance rate testing
approval_rate_group_a = approved_a / applicants_a # e.g. majority group
approval_rate_group_b = approved_b / applicants_b # e.g. protected class
impact_ratio = approval_rate_group_b / approval_rate_group_a
if impact_ratio < 0.80:
print("Potential disparate impact: flag for fairness review")This is a starting screen, not a legal conclusion. Real audits use more rigorous statistical models and legal review.
4. Explainability check
Can the underwriting decision be explained to a regulator and to the customer in plain language? Under GDPR Article 22 and NAIC's AI bulletin, "the model said so" is not an acceptable answer.
5. Vendor and third-party data audit
Where data brokers supply credit scores, wearable data, or social data, insurers must audit the vendor's own consent and collection practices. The insurer is generally still liable even if the violation originated upstream.