# Consumer protection law: fair lending and disclosure rules
In December 2023, the CFPB (Consumer Financial Protection Bureau) ordered a fintech lender to pay over $18 million in fines and refunds because its app buried loan terms behind confusing screens and its customer service reps discouraged people from disputing errors. Nothing about the product was illegal. The problem was entirely in how it was disclosed and serviced. That is the core lesson of consumer protection law in fintech: the product can be legal and the execution can still get you shut down.
This lesson covers the three pillars every lending, BNPL (Buy Now, Pay Later), or credit-adjacent fintech must satisfy: TILA disclosures, ECOA fair lending obligations, and UDAAP standards. Together they form the compliance floor for anyone extending or facilitating consumer credit in the US.
The Truth in Lending Act (TILA), implemented through Regulation Z, is a disclosure law, not a pricing law. It does not cap interest rates. It requires lenders to state credit terms in a standardized, comparable way so consumers can shop.
Core TILA disclosures include:
For BNPL specifically, disclosure obligations have been a live regulatory question. Classic "pay in 4" products often sat in a gray zone because they were structured to avoid finance charges and therefore avoid triggering full Regulation Z treatment. The CFPB's 2024 interpretive rule pushed BNPL providers toward credit-card-like disclosure and dispute-resolution obligations, treating many BNPL loans similarly to open-end credit under Regulation Z. Fintechs offering these products now generally build TILA-style disclosure screens into checkout flows, even where legal classification is contested.
Practical compliance point: disclosures must be "clear and conspicuous," a real regulatory phrase. A five-point font disclaimer under a big green "Pay Later" button is a textbook violation pattern regulators look for.
The Equal Credit Opportunity Act (ECOA), implemented through Regulation B, prohibits credit discrimination based on race, color, religion, national origin, sex, marital status, age, or receipt of public assistance income.
The critical concept here is disparate impact: a lending practice can violate ECOA even without discriminatory intent, if it produces discriminatory outcomes and isn't justified by business necessity. This matters enormously for fintechs using machine learning underwriting models.
Example: a credit model trained on historical repayment data might learn to penalize applicants from certain zip codes because those zip codes correlate with past defaults, but zip code also correlates with race due to housing segregation patterns. The model never "sees" race, yet the outcome replicates discrimination. Regulators (the CFPB, the Federal Trade Commission, and prudential banking regulators like the OCC) have explicitly stated that "the algorithm did it" is not a defense.
Fintechs typically manage ECOA risk through:
A simplified proxy test, often coded in Python during a compliance review, looks like this:
import pandas as pd
# approval_rate by protected-class proxy group (e.g., surname-zip based race proxy, per CFPB's BISG methodology)
approval_by_group = df.groupby("proxy_group")["approved"].mean()
disparity_ratio = approval_by_group.min() / approval_by_group.max()
# ratios below ~0.80 often trigger closer fair lending scrutiny (the "four-fifths rule," an EEOC-origin guideline
# also referenced informally in fair lending analysis)
print(disparity_ratio)This is a screening heuristic, not a legal conclusion. Real fair lending exams involve regression analysis controlling for legitimate credit factors.
UDAAP stands for Unfair, Deceptive, or Abusive Acts or Practices, and it is the single most commonly cited standard in fintech consent orders. It comes from Section 5 of the FTC Act and Sections 1031 and 1036 of the Dodd-Frank Act (which created the CFPB).
UDAAP does not require breaking a specific disclosure rule. It asks a broader question: did the practice harm consumers in a way that was unfair, deceptive, or that exploited a consumer's lack of understanding or unequal bargaining power?
The three prongs, briefly:
CFPB consent orders are public and are one of the best free compliance-training resources available: consumerfinance.gov/enforcement/actions. A typical order names the violation type, describes the specific conduct, and lists the remedy (fines, restitution, and often a compliance monitor).
A common pattern in BNPL and fintech lending orders: a company advertises "no fees," but consumers who miss a payment are hit with late fees not clearly disclosed at signup. This is charged as both a TILA disclosure failure and a UDAAP deception claim simultaneously, because regulators often stack theories against the same conduct.
Vérification des acquis
1. A fintech lender's product terms are fully legal, but it still faces a major enforcement action. Based on the core lesson of consumer protection law in fintech, what most likely caused this?
2. Why is TILA best described as a 'disclosure law, not a pricing law'?
3. Why did classic 'pay in 4' BNPL products historically avoid full Regulation Z treatment?
4. Select ALL correct answers about what TILA/Regulation Z requires lenders to disclose.
Sélectionnez toutes les réponses correctes.
5. Select ALL correct answers about why the CFPB's 2024 interpretive rule on BNPL matters conceptually.
Sélectionnez toutes les réponses correctes.
Traditional banks have decades of compliance infrastructure: legal review of every marketing screen, fair lending model governance committees, established adverse action workflows. Many fintechs scale product first and build compliance functions after growth, especially those operating through a "bank-fintech partnership" model where a chartered bank technically issues the loan and the fintech handles the tech and marketing layer.
This partnership structure has become a regulatory flashpoint. Regulators have signaled, through guidance and enforcement, that outsourcing origination to a bank partner does not outsource UDAAP or fair lending liability. Both the bank and the fintech can be examined and held responsible, and bank regulators (the OCC, FDIC, and Federal Reserve) increasingly require partner banks to actively supervise their fintech partners' marketing and underwriting, not just rubber-stamp them.
🎬 [VIDEO: "What is UDAAP? Unfair, Deceptive, or Abusive Acts and Practices Explained" - youtube.com - a concise walkthrough of the three UDAAP prongs with real-world enforcement examples, useful for non-lawyers]