# Calculating true CACCACCustomer Acquisition Cost (CAC) is the total sales and marketing spend divided by the number of new customers gained in a period. It measures how efficiently you grow.View full definition → across paid, organic, and partner channels in fintech
A neobank finance team runs a channel review and finds paid social "costs" $28 per signup while their partner referral channel "costs" $6. Paid social gets cut. Six months later, funded account volume drops 40%, because the partner channel was quietly cannibalizing free organic trafficorganic trafficVisitors arriving via non-paid (unpaid) search engine results, earned through content relevance and SEO rather than advertising spend.View full definition →, and neither number included the $19 of KYC (Know Your Customer, the identity verification process required by anti-money-laundering law) and underwriting spend it took to actually fund each account. This is the () trap that regulated fintechs fall into constantly.
In most industries, CACCACCustomer Acquisition Cost (CAC) is the total sales and marketing spend divided by the number of new customers gained in a period. It measures how efficiently you grow.View full definition → is: total acquisition spend divided by new customers acquired. In fintech, "acquiring" a customer isn't just a click and a signup form. A funded, compliant customer requires:
If you only count ad spend and marketing salaries, you get "funnelfunnelThe customer journey from awareness to purchase, typically Awareness, Interest, Consideration, Decision, Action, with prospects narrowing at each stage.View full definition → CACCACCustomer Acquisition Cost (CAC) is the total sales and marketing spend divided by the number of new customers gained in a period. It measures how efficiently you grow.View full definition →." If you count everything it takes to get a *funded, compliant* customer, you get "true CACCACCustomer Acquisition Cost (CAC) is the total sales and marketing spend divided by the number of new customers gained in a period. It measures how efficiently you grow.View full definition →" (sometimes called fully loaded CACCACCustomer Acquisition Cost (CAC) is the total sales and marketing spend divided by the number of new customers gained in a period. It measures how efficiently you grow.View full definition →). The gap between the two is often 30% to 60% in regulated lending and neobanking, based on patterns reported by fintech operators (see a16z's fintech metrics guide for directional benchmarks).
Standard CAC:
CAC = Total Acquisition Spend / New Customers AcquiredTrue CAC for regulated fintech:
True CAC = (Marketing Spend + KYC/Verification Vendor Costs
+ Underwriting Costs + Allocated Compliance Labor
+ Partner Referral Fees)
/ Funded Customers (not signups)The key shift: denominator is *funded* customers, not top-of-funnelfunnelThe customer journey from awareness to purchase, typically Awareness, Interest, Consideration, Decision, Action, with prospects narrowing at each stage.View full definition → signups. A digital lender might see 100,000 app starts, 40,000 completed applications, 22,000 pass KYC, and only 9,000 get funded after underwriting. If you divide spend by 100,000, CACCACCustomer Acquisition Cost (CAC) is the total sales and marketing spend divided by the number of new customers gained in a period. It measures how efficiently you grow.View full definition → looks tiny and misleading.
Say a US fintech lending app spends in one month:
Total fully loaded cost: $666,000
Funded customers: 9,000
True CAC = $666,000 / 9,000 = $74
Compare to naive CACCACCustomer Acquisition Cost (CAC) is the total sales and marketing spend divided by the number of new customers gained in a period. It measures how efficiently you grow.View full definition → using only marketing spend and signups:
$450,000 / 100,000 = $4.50
That's a 16x understatement. Naive CACCACCustomer Acquisition Cost (CAC) is the total sales and marketing spend divided by the number of new customers gained in a period. It measures how efficiently you grow.View full definition → is what gets pitched to boards; true CACCACCustomer Acquisition Cost (CAC) is the total sales and marketing spend divided by the number of new customers gained in a period. It measures how efficiently you grow.View full definition → is what determines whether unit economics actually work.
The hardest part isn't calculating total cost, it's allocating *shared* compliance infrastructure (KYC platform licensing, fraud model maintenance, compliance headcount) across channels fairly. Three practical approaches:
1. Pro-rata by funded volume: each channel absorbs compliance cost proportional to its share of funded customers. Simplest, most common.
2. Pro-rata by risk-flagged rate: channels that produce more fraud-flagged or manual-review applicants absorb more compliance cost. More accurate, harder to compute.
3. Marginal cost allocation: only assign compliance costs that scale with volume (per-check vendor fees), treat fixed compliance headcount as a company-wide overhead line, not a channel cost. Cleanest for channel comparison, understates true company-wide unit economics.
For channel-vs-channel decisions (should we cut paid social?), method 3 is usually right. For overall unit economics and investor reporting, method 1 or 2 is more honest.
# Simplified true CAC by channel
channels = {
"paid_social": {"spend": 180000, "signups": 40000, "funded": 3200},
"partner_referral": {"spend": 30000, "signups": 15000, "funded": 2100},
"organic": {"spend": 5000, "signups": 20000, "funded": 1800},
}
shared_kyc_cost = 80000
shared_underwriting_cost = 66000
shared_compliance_labor = 40000
total_shared = shared_kyc_cost + shared_underwriting_cost + shared_compliance_labor
total_funded = sum(c["funded"] for c in channels.values())
for name, c in channels.items():
allocated_shared = total_shared * (c["funded"] / total_funded)
true_cac = (c["spend"] + allocated_shared) / c["funded"]
print(f"{name}: true CAC = ${true_cac:.2f}")This pro-rata-by-funded-volume approach exposes channels that look cheap on raw spend but drive a disproportionate share of flagged, high-compliance-cost applicants.
As of recent industry estimates (2024 to 2025, treat as directional, not exact):
Always compare CACCACCustomer Acquisition Cost (CAC) is the total sales and marketing spend divided by the number of new customers gained in a period. It measures how efficiently you grow.View full definition → against LTVLTVLifetime Value: the total revenue (or profit) a customer generates throughout their entire relationship with your business.View full definition → (Lifetime ValueLifetime ValueLifetime Value: the total revenue (or profit) a customer generates throughout their entire relationship with your business.View full definition →) using the same "funded customer" denominator, a $74 true CACCACCustomer Acquisition Cost (CAC) is the total sales and marketing spend divided by the number of new customers gained in a period. It measures how efficiently you grow.View full definition → is fine against a $400 LTVLTVLifetime Value: the total revenue (or profit) a customer generates throughout their entire relationship with your business.View full definition → lending customer, but alarming against a $90 LTVLTVLifetime Value: the total revenue (or profit) a customer generates throughout their entire relationship with your business.View full definition → neobank checking account with thin interchange revenue.
Knowledge check
1. Why did cutting the neobank's paid social channel based on raw signup cost ultimately backfire?
2. What is the core distinction between 'funnel CAC' and 'true CAC' in a regulated fintech context?
3. A fintech marketing team is deciding which acquisition channel to scale. Why is it risky to make this decision using only per-channel funnel CAC?
4. Select ALL correct answers about costs that should be included when calculating 'true CAC' for a regulated fintech product.
Select all the correct answers.
5. Select ALL correct answers about why relying solely on per-signup cost comparisons across channels can mislead fintech decision-making.
Select all the correct answers.
Channel mislabeling: partner and organic channels often get credited for customers who were actually influenced by paid brand campaigns (a "channel halo effect"). Multi-touch attributionMulti-touch attributionA method that distributes conversion credit across all marketing touchpoints in the customer journey, rather than crediting only the first or last interaction.View full definition → or at minimum incrementality testing helps here, see the Marketing Science Institute for methodology basics.
Denominator games: teams under pressure will quietly report CACCACCustomer Acquisition Cost (CAC) is the total sales and marketing spend divided by the number of new customers gained in a period. It measures how efficiently you grow.View full definition → per "activated" or "verified" customer instead of per "funded" customer, inflating apparent efficiency. Always ask: funded, revenue-generating customer, or something upstream?
Fraud cost hiding: fraud losses on approved-then-charged-off accounts are sometimes booked as credit losses, not acquisition costs, even though weak KYC/fraud screening on a channel directly caused them. If one channel drives disproportionate fraud, its true CACCACCustomer Acquisition Cost (CAC) is the total sales and marketing spend divided by the number of new customers gained in a period. It measures how efficiently you grow.View full definition → should reflect that.
🎬 [VIDEO: "Fintech Unit Economics Explained" - youtube.com/results?search_query=fintech+unit+economics+CACCACCustomer Acquisition Cost (CAC) is the total sales and marketing spend divided by the number of new customers gained in a period. It measures how efficiently you grow.View full definition →+LTVLTVLifetime Value: the total revenue (or profit) a customer generates throughout their entire relationship with your business.View full definition → - search for current operator-led breakdowns of CACCACCustomer Acquisition Cost (CAC) is the total sales and marketing spend divided by the number of new customers gained in a period. It measures how efficiently you grow.View full definition →, , and payback period calculations in fintech business models]