Skip to content
The AI Act's Steep Fines and Your Website or App: A Guide for Fintech Startups in Europe
Business & Startups13 min read

The AI Act's Steep Fines and Your Website or App: A Guide for Fintech Startups in Europe

Scult Team
13 min read

Non-compliance with the EU AI Act can now cost fintech startups up to €15 million or 3% of global turnover, and most of the exposure lives inside product code.

Direct answer: The EU AI Act now carries penalties of up to €15 million or 3% of a company's global annual turnover for non-compliance, and fintech startups are exposed because the rules apply to the AI-driven features already living inside their websites and apps — credit scoring, fraud detection, chatbots, and risk-based pricing. The fix is not a legal memo sitting in a drawer; it is auditing what your product actually does, documenting it, and rebuilding the parts that were never designed with compliance in mind. Custom software development is the practical route to close that gap without freezing your roadmap.

Euronews reported on August 2, 2026 that companies failing to comply with the AI Act now risk fines reaching €15 million or 3% of worldwide annual turnover, whichever is higher — the same tiered penalty structure used under GDPR, applied this time to how companies build and deploy AI systems rather than just how they handle personal data. For a European fintech startup, this is not an abstract regulatory headline. Fintech is one of the sectors where AI is most embedded in the product itself: automated underwriting, transaction monitoring, KYC document checks, dynamic pricing, and support chatbots all touch decisions that affect a real person's money or access to financial services. The AI Act does not treat these as neutral features — several of them sit close to or inside categories the regulation calls "high-risk," which triggers documentation, testing, and oversight obligations that most early-stage products were never built to satisfy. A precise breakdown of how many fintech firms are currently non-compliant is not publicly available for this specific angle, but the general pattern from the AI Act's rollout is consistent: enforcement has moved from published text to active fine exposure, and product teams that treated AI features as pure engineering work now have a compliance surface they did not know they were carrying.

What the AI Act Actually Changed in August 2026

The AI Act itself is not new — it has been phasing in obligations since 2024. What changed, according to the Euronews report, is the sharpening of enforcement teeth: the €15 million or 3% of global turnover penalty is now the operative risk, not a distant clause. That distinction matters for how a startup should react. A law with fines on paper is a planning item. A law with fines being actively cited in coverage and regulatory guidance is an operating constraint — the kind that shows up in due diligence questions from investors, in enterprise procurement checklists, and in partner bank risk assessments.

For fintech specifically, the regulation's risk tiers matter more than the headline number. Systems used for creditworthiness assessment, insurance pricing, and certain fraud-detection use cases are treated as higher-risk under the Act, which means they carry requirements around data governance, human oversight, technical documentation, and traceability. A chatbot that only answers FAQ questions is a different risk category from a model that decides whether a loan application gets a lower interest rate. The mistake many startups make is bundling all "AI features" together in their own head, when the regulation draws sharp lines between them. Getting this categorization right is the first real piece of work — and it is a technical exercise as much as a legal one, because only someone who understands the actual model inputs, outputs, and decision logic can say with confidence which category a feature falls into.

Why This Isn't Just a Legal Department Problem

The instinct at a lean startup is to hand this to outside counsel and wait for a summary. That undersells the problem. The AI Act's documentation requirements ask for things a lawyer cannot produce alone: a record of what data trained or informed the system, what testing was done for bias and accuracy, what human review steps exist before a decision is finalized, and what logging exists to reconstruct a decision after the fact. If your fraud-detection logic or credit-scoring model was built quickly to hit a launch date, that documentation trail probably does not exist yet — and building it after the fact means going back into the codebase, not just writing a policy document.

Why This Matters Specifically for Fintech Startups in Europe

European fintech startups sit at an unusual intersection: they are small enough to still be moving fast on product decisions, but they operate in one of the most heavily regulated sectors on the continent, layered on top of existing obligations like PSD2, GDPR, and national financial conduct rules. The AI Act adds a new axis of scrutiny that runs parallel to, not instead of, those existing frameworks.

There are three concrete reasons this lands harder on fintech startups than on, say, a D2C retail app also using AI-powered personalization:

  1. The stakes of the AI decision are higher. A recommendation engine getting a product suggestion wrong is a minor UX miss. A credit or fraud model getting a decision wrong denies someone money, flags them incorrectly, or exposes the company to regulatory complaint. This is exactly why financial use cases sit closer to the Act's high-risk category.
  2. Investors and enterprise partners are already asking. As AI Act enforcement becomes real, due diligence checklists for fintech funding rounds and B2B partnerships increasingly include an AI compliance question. A startup that cannot answer it clearly signals unmanaged risk to anyone deciding whether to write a check or sign a contract.
  3. The fine scales with company size and revenue, not with headcount. A 3% of global turnover penalty does not care that you are a 12-person startup. It is calculated against the business the product actually generates, which means the financial exposure can be disproportionate to the size of the team that built the non-compliant feature.

None of this means every fintech startup needs an in-house compliance department by next quarter. It means the product and engineering roadmap needs an honest look at which features carry AI Act exposure, in what order to address them, and what the fix actually requires at the code level — which is a different exercise from reading the regulation's text.

What Changes in Practice for Your Website or App

Translating "comply with the AI Act" into engineering work means three categories of change show up in a typical fintech product.

1. Traceability and Logging

If a model contributes to a decision — approving a transaction, flagging it for review, adjusting a quoted rate — the system needs to be able to explain, after the fact, what inputs led to that output and whether a human reviewed it. Many early-stage products log outcomes but not the reasoning path. Retrofitting this usually means adding structured audit logging around every model call, not just around the API endpoint that serves the user-facing feature.

2. Human Oversight Points

High-risk AI features generally need a designed point where a human can review, override, or halt an automated decision before it becomes final, or shortly after. If your app currently auto-approves or auto-rejects with no review queue, that is a gap. Building this well means it cannot feel like a bolted-on admin panel — it needs to fit the actual operational workflow of whoever is doing the review, or it will get ignored under time pressure, which defeats the purpose.

3. Data and Model Documentation Baked Into the Build Process

Rather than documentation as an after-the-fact writing exercise, compliant teams treat it as part of the development pipeline: every model version, every meaningful change to training data or decision logic, and every testing round gets recorded as the system is built, not reconstructed months later from memory and old commit messages. This is where custom software development matters directly — a team that is building or refactoring the underlying system can wire this documentation trail in as part of the architecture, rather than trying to bolt governance onto a black box after launch.

This is also where product and brand identity choices intersect with compliance more than founders expect. A fintech startup rebuilding its risk and decision flows is often also rethinking how those features are presented and trusted by users — worth reading alongside Logo and Brand Identity Design: What Makes a Mark Actually Work if a rebuild is touching how the product is perceived, not just how it functions.

What to Do About It Now

Start with an inventory, not a rebuild. List every feature in your product that uses a model, a scoring algorithm, or automated decision logic — including ones that feel minor, like a chatbot that also handles account questions. For each one, classify it against the Act's risk tiers as best you can, flagging anything touching credit, fraud, or pricing decisions as a priority. This inventory alone often surfaces two or three features nobody had flagged as "AI" internally because they were built as ordinary business logic with a scoring step, not as a labeled AI initiative.

From there, the practical sequence is:

  • Audit the highest-risk features first for documentation, logging, and human-oversight gaps.
  • Prioritize fixes by exposure — a live credit-decision feature outranks an internal analytics dashboard.
  • Rebuild incrementally rather than pausing the product. Most of this work can be layered into existing systems through targeted custom software development rather than a ground-up rewrite, as long as the architecture is touched deliberately rather than patched.
  • Document as you go, treating the audit trail as a permanent part of the system rather than a one-time report.

Fintech founders who have expanded internationally have often already been through a version of this exercise for a different jurisdiction's rules — the same discipline of auditing what a product actually does under the hood before scaling further shows up in Software Development Company in the UAE, which covers a comparable pattern of aligning product architecture with local regulatory expectation before growth outpaces compliance. The lesson carries over directly: the earlier the audit happens relative to your growth curve, the cheaper the fix.

What the Inventory Step Actually Surfaces at a Fintech Startup

It's worth being specific about what this inventory typically turns up, since "features nobody flagged as AI" undersells how common this gap actually is. A fast-growing fintech routinely discovers that its fraud-screening logic — built early as a straightforward rules engine and later quietly upgraded to incorporate a machine-learning scoring model as the team scaled — was never re-labeled internally as an AI system once that upgrade happened, so nobody thought to include it in a compliance conversation. Similarly, a "smart" customer support chatbot that started as a simple FAQ-matching tool but was later swapped for a more capable language model behind the scenes often escapes classification because the product surface looks unchanged even though the underlying decisioning logic changed completely. This pattern — incremental technical upgrades that quietly cross a regulatory threshold without a corresponding internal conversation — is precisely why the inventory step needs to examine what a feature currently does technically, not what it was originally scoped to do when it first shipped.

Why Fast-Moving Fintech Products Need a Standing Review Habit, Not a One-Time Audit

A specific risk worth naming for fintech startups particularly: the pace of iteration that makes a young fintech competitive also means its risk classification can shift silently and often. A credit-decisioning feature retrained monthly as new transaction data accumulates, or a fraud model updated in response to new attack patterns, means a system's actual behavior — and therefore its regulatory risk profile — can drift meaningfully between one compliance review and the next without anyone deliberately deciding to change its risk classification. Building a lightweight trigger into the existing deployment process — flagging any material change to a scoring model's inputs, outputs, or training data as an event that requires a quick compliance re-check — is a far more sustainable pattern than treating this as a periodic audit that inevitably goes stale the moment the product ships its next iteration, which for a fast-moving fintech startup can be within weeks of the last review.

Pricing Context: Where This Work Typically Falls

The scope of AI Act remediation varies a lot by how much of your product touches automated decisions, but most fintech startups land in one of these tiers when scoping the engineering work:

Tier Typical scope Fits this scenario when...
Essential — $1,000 Feature-level audit and logging fixes for a single model or decision flow You have one or two AI-driven features and need traceability and documentation added
Growth — $2,000 Multi-feature remediation across several product areas, including human-oversight workflows AI touches several parts of your product (scoring, fraud checks, chat) and needs coordinated rework
Enterprise — $4,000+ Full architectural review and rebuild of decision systems, ongoing documentation pipeline, and integration work You operate at scale, across multiple markets, with high-risk classifications and investor or partner scrutiny

These are the tiers this kind of work typically falls under, not a fixed quote — the right starting point depends on how many features carry AI Act exposure and how entangled they are with your existing codebase.

Keeping This Proportionate to Your Actual Deployment Scale

A closing calibration point: a pre-launch fintech with a handful of beta users has genuinely less immediate exposure than one processing thousands of live credit or fraud decisions daily, and the two shouldn't apply identical urgency to a full compliance build-out. Matching the depth of documentation and review effort to actual deployment scale and risk exposure, rather than treating every fintech startup as facing identical stakes, keeps this proportionate as the company grows, and revisiting that scope at each major growth milestone — a new funding round, entry into a new market — keeps the assessment from lagging behind the business, since compliance readiness scoped for a beta-stage product rarely still fits once the same features are handling real volume.

Key Takeaways

  • The AI Act's fines — up to €15 million or 3% of global turnover — are now an active operating risk for fintech startups, not a distant compliance item.
  • Credit scoring, fraud detection, and pricing features are the most likely to fall into higher-risk categories under the Act.
  • Documentation, traceability, and human-oversight points need to be built into the system, not written up separately after launch.
  • An honest feature inventory, done before a rebuild, usually surfaces AI-driven decision logic nobody had labeled as "AI."
  • Remediation can be layered into existing products through targeted custom software development rather than requiring a full rewrite.
  • The earlier this audit happens relative to a startup's growth curve, the lower the cost and disruption of fixing it.

Getting AI Act exposure under control is engineering work as much as legal work, and the two need to move together. If you want help figuring out where your product actually stands and what to fix first, book a meeting with our team.

Frequently Asked Questions

What is the EU AI Act in plain terms?

It is a European Union regulation that sets rules for how companies build, deploy, and document AI systems, with stricter requirements for systems classified as high-risk. It applies across sectors but hits financial services particularly hard because credit and fraud decisions are treated as higher-risk use cases.

Why did fines suddenly become a real concern in August 2026?

Euronews reported on August 2, 2026 that non-compliance now risks fines up to €15 million or 3% of global turnover, marking a shift from the Act being a text on paper to an actively enforced financial risk that shows up in due diligence and regulatory attention.

Does the AI Act apply to a small fintech startup, or only large banks?

It applies based on what the system does, not the size of the company operating it. A five-person startup running an automated credit-scoring feature carries the same categorization exposure as a large bank running a similar feature, though enforcement priorities may still vary.

Which fintech features are most likely to be considered high-risk?

Credit and creditworthiness scoring, insurance risk pricing, and certain fraud-detection or transaction-monitoring systems are the features most likely to fall into higher-risk categories, because they directly affect a person's access to money or financial services.

Is a customer support chatbot covered by the AI Act?

It depends on what the chatbot does. A chatbot that only answers general questions carries lower risk than one that also makes or influences decisions about a customer's account, application status, or financial standing.

What counts as "non-compliance" under the Act?

Non-compliance generally means failing to meet the documentation, testing, human-oversight, or transparency requirements attached to a system's risk classification — not simply using AI at all.

How is the 3% of turnover penalty actually calculated?

It is calculated against a company's global annual turnover, and the fine applied is whichever is higher between the flat cap and the percentage figure, similar to how GDPR penalties are structured.

Can a startup be fined even if no customer was harmed?

Yes. The obligations are about process, documentation, and oversight, not solely about outcomes. A system can be non-compliant on paper even if it has not yet produced a harmful decision.

What is the first practical step a fintech startup should take?

Build an honest inventory of every feature that uses a model or automated scoring logic, then classify each one against the Act's risk tiers before deciding where to focus remediation effort.

How long does an AI Act compliance audit usually take?

It depends heavily on how many AI-driven features exist and how well-documented the current system already is; a single-feature audit can move quickly, while a full architectural review across multiple products takes longer.

Do we need to rebuild our entire platform to comply?

Usually not. Most compliance gaps can be addressed by layering logging, documentation, and oversight workflows into the existing architecture through targeted custom software development rather than a full rewrite.

What does "human oversight" mean in a real product?

It means designing a specific point in the workflow where a person can review, override, or pause an automated decision, rather than letting the system finalize high-stakes outcomes with no review step at all.

Our approval flow is fully automated today — is that a problem?

It can be, depending on the feature's risk classification. Fully automated high-risk decisions with no review mechanism are one of the more common gaps startups discover during an audit.

What kind of documentation does the AI Act actually expect?

Records of what data informed or trained a system, what testing was done for accuracy and bias, what oversight exists, and enough technical detail to reconstruct how a given decision was reached.

Can our legal team handle this without engineering involvement?

Not fully. Legal counsel can interpret the regulation, but the actual documentation trail — model inputs, decision logic, testing records, logging — has to come from the engineering side, because that is where the real system behavior lives.

What happens if we ignore this until a regulator asks?

Reconstructing documentation after the fact is significantly harder and slower than building it into the system as you go, and in the meantime the fine exposure remains live regardless of whether anyone has asked yet.

Does this affect our fundraising?

It can. Investors doing due diligence on fintech startups increasingly ask about AI governance, and being unable to answer clearly signals unmanaged risk during a round.

Does this affect partnerships with banks or larger financial institutions?

Yes, often more directly than fundraising does. Enterprise financial partners typically run their own risk assessments before integrating with a startup's API or product, and AI Act compliance is increasingly part of that checklist.

Is this only relevant if we operate physically in the EU?

No. The Act generally applies based on where the AI system's outputs are used or where users are located, not solely where the company is headquartered, so startups serving European users should assume relevance even if based elsewhere.

How does the AI Act interact with GDPR?

They are separate regulations that often apply to the same systems — GDPR governs personal data handling, while the AI Act governs how the AI system itself is built, tested, and overseen. A compliant data practice under GDPR does not automatically satisfy AI Act obligations.

What about PSD2 and other existing fintech regulations?

The AI Act adds a new compliance layer on top of existing frameworks like PSD2 rather than replacing them, so fintech startups need to treat this as additive scope, not a substitute for other obligations already in place.

Our model was built by a third-party vendor — are we still responsible?

Generally yes, in large part. Deploying a third-party model into your product typically still requires you to understand and document how it makes decisions within your system, even if you did not build the underlying model.

How do we classify which of our features are "high-risk"?

This requires mapping each feature's actual function against the Act's defined risk categories — credit assessment, fraud detection, and similar financial decision-making functions are explicit examples, but the exact boundary can require careful technical review of what each feature does.

What is the cost range for fixing this at the code level?

Scope varies by how many features are affected. Feature-level audits and logging fixes typically start around the Essential tier ($1,000), while broader multi-feature remediation or full architectural rebuilds move into the Growth ($2,000) or Enterprise ($4,000+) range.

Can this work be done without slowing down our product roadmap?

Yes, if it is layered in incrementally rather than treated as a separate multi-month freeze. Prioritizing the highest-risk features first lets teams keep shipping while closing exposure gap by gap.

What is the risk of doing this remediation poorly or superficially?

A bolted-on compliance layer that does not fit the actual workflow — like an oversight queue nobody actually checks — creates the appearance of compliance without the substance, which is arguably riskier because it looks resolved when it is not.

Should we build our own logging and documentation system, or use existing tools?

That depends on how entangled your decision logic already is with your existing stack; a custom software development approach lets the audit trail be wired directly into the architecture where existing tooling does not fit cleanly.

How do we know if our fraud-detection system counts as high-risk?

If the system's output materially affects a customer's access to funds, account status, or is used to flag them for further scrutiny, it is likely to sit in or near the Act's higher-risk categories and should be reviewed accordingly.

What role does data quality play in AI Act compliance?

Data governance and quality are part of the documentation expectation for higher-risk systems — being able to describe what data informed a model's decisions is part of demonstrating the system is understood and controlled.

Is there a grace period for startups to become compliant?

The Act has phased in obligations over time, but as of the August 2026 reporting, enforcement risk is already active rather than purely prospective, so treating this as something to address "eventually" carries real exposure.

What's the difference between compliance documentation and general engineering documentation?

Compliance documentation specifically needs to trace decisions back to inputs, testing, and oversight in a way that would satisfy a regulator's review, whereas general engineering documentation is usually written for internal maintainability and may not capture that trail.

Can our existing dev team handle this, or do we need outside help?

It depends on their bandwidth and familiarity with building auditable systems; many startups bring in a custom software development partner specifically to design the logging, oversight, and documentation architecture without diverting their core team from the product roadmap.

What should investors expect to see if they ask about this?

A clear inventory of AI-driven features, their risk classification, and a documented plan or completed work addressing logging, oversight, and documentation gaps for the highest-risk items.

Does rebranding or redesigning our product touch this at all?

Not directly, but startups often revisit trust-related product presentation — like brand identity — at the same time they rework risk and decision flows, since both affect how the product is perceived by users and partners.

What is the relationship between this and our brand identity?

They are separate workstreams, but a startup rebuilding its underlying decision systems is a natural moment to also review how those features are communicated and trusted visually, which is a different but related project.

How does this compare to compliance work fintechs have done for other markets, like the UAE?

The underlying discipline is similar — auditing what the product actually does before scaling further into a regulated market — even though the specific rules differ by jurisdiction.

What if we're a very early-stage startup with no revenue yet?

The fine is tied to global turnover, so a pre-revenue startup has lower immediate financial exposure, but the same product gaps still exist and typically get more expensive to fix the longer they wait, especially once the product scales.

Should we pause launching new AI features until we're compliant?

Not necessarily. It is usually more practical to build compliance considerations into new features as they are developed, rather than freezing the roadmap entirely.

How often should we re-audit our AI features for compliance?

Re-auditing whenever a model, its training data, or its decision logic changes meaningfully is a reasonable baseline, since documentation needs to reflect the system as it currently behaves.

What's the biggest misconception fintech founders have about this?

That it is purely a legal or policy problem. In practice, most of the real work — logging, oversight design, documentation embedded in the build — is engineering work that legal counsel cannot do alone.

Can this exposure affect an acquisition or exit down the line?

Yes. Acquirers conducting due diligence on a fintech target are increasingly likely to ask about AI governance, and unresolved gaps can affect valuation or deal terms.

What does "traceability" mean in this context?

It means being able to reconstruct, after the fact, what inputs and logic led to a specific automated decision — which requires structured logging designed for that purpose, not just standard application logs.

Is there a difference between compliance for a mobile app versus a web platform?

The underlying AI Act obligations attach to the system's function, not the platform, so a scoring model behind a mobile app carries the same classification concerns as the same model behind a web platform.

What should be in a review queue for flagged decisions?

Enough context for a human reviewer to understand why the system flagged the case, along with a clear mechanism to approve, reject, or escalate it, integrated into the reviewer's actual workflow rather than a separate disconnected tool.

How do we avoid an oversight feature becoming ignored in practice?

Design it to fit into the existing operational workflow of whoever performs the review, with clear priority and enough context to act quickly, rather than adding it as an afterthought that competes with other tasks.

What's a reasonable first deliverable from a compliance-focused engineering engagement?

A documented inventory of AI-driven features with risk classifications, followed by a prioritized remediation plan starting with the highest-exposure features.

Does this apply to internal tools, or only customer-facing features?

It can apply to internal tools as well if their output materially affects decisions about customers, such as internal fraud-review dashboards that drive account actions.

How do we talk about this with our board without alarming them unnecessarily?

Present it as a scoped, prioritized engineering workstream with clear cost tiers and a starting inventory, rather than an open-ended legal risk — that framing reflects the actual nature of the work.

What happens if our AI vendor changes their model without telling us?

That is a real operational risk worth addressing contractually and technically, since your documentation needs to reflect the system as it currently behaves, not as it behaved when you last reviewed it.

Where should a fintech startup start if they've never thought about this before?

Start with the feature inventory — list every place a model or scoring algorithm touches a customer-facing decision — before deciding on tooling, documentation formats, or engineering scope, and bring in help scoping the technical rebuild once the inventory is clear.

Want results like this?

Keep reading