All termsFintechIntermediateUpdated April 22, 2026

What Is Microdeposit?

A microdeposit is a small bank transfer—typically $0.01–$0.10—sent to a user's bank account to verify ownership. The account holder confirms the exact deposit amounts, proving account access before ACH payments or payouts are activated.

Also known as: Trial deposits, Penny deposits, Test deposits, Verification deposits

Key Takeaways

  • Microdeposits send two small randomized amounts (typically under $0.10 each) to a bank account; the user must confirm both values to prove account access.
  • Verification takes 1–3 business days, making microdeposits slower than instant alternatives but universally compatible with any US bank account.
  • Microdeposits require only a routing and account number — no online banking credentials — giving them broader reach than login-based methods.
  • For high-value or high-risk payouts, microdeposit verification provides a reliable audit trail of account ownership confirmation.
  • Return codes on failed microdeposits (e.g., R03, R04) are early signals of invalid or closed accounts and should trigger immediate user-facing errors.

Microdeposit verification is one of the oldest and most reliable methods for confirming that a customer's bank account is real and accessible before initiating ACH payments, payouts, or direct debits. It works by sending two tiny, randomized deposits to the provided account and asking the user to confirm the exact values — a simple but effective proof of access.

Despite the rise of faster alternatives, microdeposits remain a foundational tool in the payment stack. Understanding how they work, when to use them, and how to implement them correctly is essential for any merchant or developer handling bank-to-bank payment flows.

How Microdeposit Works

The microdeposit process follows a well-defined sequence: collect bank credentials, send test funds, verify the response. Each step is straightforward, but the implementation details — timing, retry logic, expiry windows — determine whether the flow succeeds or creates friction that drives users to abandon the verification entirely.

01

Collect Bank Account Details

The user provides their bank routing number and account number, typically through a form on the merchant's checkout or onboarding flow. No online banking login is required at this stage — just the two numbers printed on a check or found in the user's banking app.

02

Initiate Two Small ACH Deposits

The payment platform submits two separate ACH credit entries to the user's bank account. Each deposit carries a randomized amount between $0.01 and $0.10. The transactions typically appear within 1–3 business days, labeled with a recognizable descriptor such as the company name or "VERIFICATION."

03

User Checks Their Bank Statement

The user logs into their bank account — or reviews their statement — to find the two deposit amounts. The merchant's platform should send a notification email or in-app prompt with instructions at the moment the deposits are initiated, so the user knows what to look for and when.

04

User Enters the Deposit Amounts

The user returns to the merchant's platform and enters the two deposit values in the order they appear on their statement. A verification window — commonly 10 days — applies. Entering the wrong amounts typically triggers a limited number of retries before the attempt is locked out.

05

System Validates and Activates the Account

The platform compares the submitted values against the amounts it sent. On a match, the account is marked as verified and ACH debits, payouts, or transfers are enabled. On a mismatch or expiry, the verification fails and the user must restart the process from step one.

Why Microdeposit Matters

Bank account verification is not optional for businesses operating ACH payment flows — it is a regulatory and risk management requirement. Sending ACH debits to unverified accounts creates exposure to unauthorized return codes, fraud losses, and potential NACHA rule violations that can result in suspension from the ACH network.

The scale of ACH underscores why verification matters: the ACH Network processed over 31.5 billion payments totaling more than $80 trillion in 2023, according to Nacha's annual report. Even a fractional error or fraud rate across that volume translates to significant losses. For context, the Association for Financial Professionals found in its 2024 Payments Fraud Survey that 80% of organizations experienced payments fraud attempts in 2023, with ACH debits and credits among the most targeted payment types.

Verification Completion Rates

Payment research consistently shows microdeposit flows see completion rates of 70–80%, compared to 85–95% for instant account verification methods. The gap reflects the 1–3 day wait and manual re-entry step. Optimizing reminder timing and simplifying the amount-entry UI can recover 5–10 percentage points of that gap.

For platforms running marketplace payouts, lending disbursements, or subscription billing, an unverified account that slips through is not just a failed transaction — it is a potential return fee, a fraud vector, and a customer service incident. Microdeposits are a cheap, low-dependency way to prevent all three.

Microdeposit vs. Instant Account Verification

Instant account verification has become the default recommendation for consumer-facing flows, but microdeposits continue to serve use cases where login-based access is unavailable, undesirable, or architecturally unsuitable. The right choice depends on your user base, timeline, and risk tolerance.

FeatureMicrodepositInstant Account Verification
Verification speed1–3 business daysSeconds
US bank coverageAll US banks~12,000+ via data aggregators
User frictionHigh — manual amount entryLow — bank login flow
Credentials requiredRouting + account number onlyOnline banking username/password
Cost per attemptLow ($0.01–$0.10 in deposits)Higher (per-call API fees)
Fraud resistanceModerateModerate to high
International supportUS ACH onlyGrowing via open banking
Audit trailDeposit confirmation recordRead-only data snapshot
Works without internet bankingYesNo

Microdeposits win on coverage and cost. Instant verification wins on speed and conversion. Many platforms offer both, defaulting to instant and falling back to microdeposits for users whose banks are not supported or who decline to share login credentials.

Types of Microdeposit

Not all microdeposit implementations are identical. Variation exists in the number of deposits sent, the timing mechanism, and how funds are recovered after verification.

Standard dual microdeposit is the most common format: two randomized deposits sent simultaneously via ACH, both of which the user must confirm. This is the method used by Stripe, Dwolla, and most ACH origination APIs. The dual-amount design makes guessing statistically impractical.

Single microdeposit sends one deposit, reducing the verification surface to a single value. Some platforms adopt this to simplify the user experience, accepting a marginally higher guessing risk in exchange for a simpler entry form. Less common than dual-deposit but used in some white-label bank account products.

Same-day microdeposit uses Same Day ACH to deliver the test deposits within hours rather than 1–3 business days. This is increasingly available through major ACH originators and significantly improves completion rates by closing the gap between deposit initiation and user re-engagement. The cost per transaction is higher than standard ACH.

Penny test via wire or RTP — in some B2B or enterprise contexts, a sub-dollar amount is sent via wire or Real-Time Payments rather than ACH. This delivers the verification amount in seconds, effectively creating an instant microdeposit. Uncommon in consumer flows due to cost and infrastructure overhead.

Best Practices

Implementing microdeposit verification correctly requires attention to both the business logic and the user experience. Poorly timed notifications, unclear instructions, and inadequate error handling are the primary reasons verification flows fail — not the microdeposit mechanism itself.

For Merchants

  • Set clear expectations at enrollment. Tell users exactly what to expect: two small deposits, arriving within 1–3 business days, with a 10-day window to verify. A progress indicator or email drip sequence reduces confusion and support tickets.
  • Send a timed reminder. Email or SMS the user at deposit arrival — typically 24–48 hours after initiation — with a direct link to the verification screen. This single touchpoint is the highest-leverage optimization for completion rate.
  • Define a retry and expiry policy. Communicate clearly how many attempts are allowed and what happens when the window closes. A graceful expiry flow that restarts verification without losing the user's other data significantly reduces abandonment.
  • Reconcile or withdraw the deposits. Do not leave unclaimed microdeposits sitting permanently. Either auto-withdraw after verification or write off the nominal amounts systematically to keep your reconciliation clean.

For Developers

  • Handle ACH return codes immediately. Monitor for return codes R03 (no account/unable to locate), R04 (invalid account number), and R10 (unauthorized debit). A returned microdeposit is a definitive signal — do not retry on R03 or R04 without collecting corrected account details from the user.
  • Encrypt and tokenize stored account numbers. Routing and account numbers collected during the microdeposit flow must be stored with field-level encryption. Many ACH APIs issue a bank account token on initial submission so you never store raw credentials in your own database.
  • Implement rate limiting on the amount-entry endpoint. Without rate limiting, an attacker who obtained an account number could brute-force the deposit amounts. Lock the attempt after 3–5 failed submissions and require re-enrollment.
  • Use idempotency keys on deposit initiation. Network timeouts during ACH submission can cause duplicate deposits if retried naively. Always pass an idempotency key to your ACH API to prevent double-sending.
  • Log verification outcomes for audit. Retain a timestamped record of when verification was initiated, when amounts were submitted, and whether they matched. This log is your evidence of due diligence in the event of a dispute or NACHA audit.

Common Mistakes

Microdeposit flows fail most often because of predictable implementation gaps that are straightforward to fix once identified.

Sending deposits without a notification. Many teams initiate the deposits and expect users to check their bank account unprompted. Without an email or SMS with clear instructions, completion rates drop sharply. The deposit appears as a small, unrecognized credit that most users ignore.

No expiry communication. If the 10-day verification window closes and the account is silently deactivated, users who try to pay days later encounter a confusing error with no obvious path forward. Always email an expiry warning 48 hours before the window closes.

Accepting any two numbers as "close enough." Some implementations apply fuzzy matching or rounding to the amount-entry validation. This defeats the security purpose of the microdeposit entirely. Validation must be exact — $0.03 is not $0.04.

Not accounting for direct debit timing differences. Developers who build against a sandbox environment with instant deposit simulation often fail to account for real-world ACH settlement timing. Users in production see delays that were invisible in testing, leading to support escalations and abandoned verifications.

Ignoring pre-notification (prenote) requirements. Some ACH origination agreements require a zero-dollar prenote to be sent and honored before any credit or debit entries. Skipping prenotes when required by your bank agreement can put your ACH origination status at risk.

Microdeposit and Tagada

Tagada's payment orchestration layer sits above the underlying ACH processors and bank verification providers, enabling merchants to route verification flows to the optimal provider based on coverage, cost, and fallback logic — without rewriting integration code each time.

When instant account verification fails — due to unsupported bank, user refusal to share credentials, or API downtime — Tagada can automatically fall back to a microdeposit flow with the same merchant-facing API contract. This means your checkout never hard-fails on account verification; it degrades gracefully while preserving conversion.

For platforms managing payouts to a large contractor or seller base, Tagada's orchestration can apply verification rules by payout tier — routing high-value recipients through microdeposit verification for its audit trail, and low-value recipients through faster instant methods. This risk-tiered approach balances security rigor with the frictionless experience that conversion-sensitive flows demand.

Frequently Asked Questions

How long does microdeposit verification take?

Standard microdeposit verification takes 1–3 business days. Once the two small deposits appear in the user's bank statement, they typically have a 10-day window to enter the amounts and complete verification. Same-day ACH options can compress the deposit leg to a few hours, but the manual confirmation step still requires explicit user action before the account is unlocked.

How much are the microdeposit amounts?

Microdeposit amounts are typically between $0.01 and $0.10 each. Most providers send two separate deposits with randomized values — for example, $0.03 and $0.07 — so they cannot be guessed. Some platforms use a single deposit instead. The small amounts are usually withdrawn after successful verification or left in the account as a nominal goodwill credit.

What happens if a user fails to verify their microdeposit?

If a user does not enter the correct amounts within the verification window (commonly 10 days), the attempt expires and the process must restart. Repeated failures may trigger fraud monitoring flags. Merchants should implement expiry reminder emails, clear UI prompts, and a defined retry policy to minimize drop-off during what is already a high-friction verification step.

Are microdeposits secure?

Microdeposits are a low-risk, widely accepted verification method. They prove the user has access to the account's transaction history — not just the account number — since the user must retrieve and confirm the specific deposit values. However, they do not verify account ownership in real time or flag recently compromised accounts, so combining them with identity checks adds meaningful security depth.

Can microdeposits fail or be rejected?

Yes. Microdeposits fail when the account number is invalid, the account is closed, or the receiving bank rejects the inbound ACH. A returned microdeposit is a reliable signal of an invalid account. Developers must handle ACH return codes — R03 (no account), R04 (invalid account number) — and surface actionable error messages rather than silently retrying, which can increase costs and fraud risk.

Do microdeposits work internationally?

Microdeposits are primarily a US banking concept tied to the ACH network. Analogous verification mechanisms exist elsewhere — such as penny tests over SEPA in Europe — but the process, amounts, timing, and regulatory framework differ significantly by country. For international payouts and collections, open banking-based instant account verification is generally the preferred alternative to microdeposits.

Tagada Platform

Microdeposit — built into Tagada

See how Tagada handles microdeposit as part of its unified commerce infrastructure. One platform for payments, checkout, and growth.

Related Terms

Payments

ACH

ACH (Automated Clearing House) is a US electronic network that processes batch credit and debit transfers between bank accounts. It underpins payroll, bill payments, and B2B transfers, settling funds in 1–3 business days.

Fintech

Instant Account Verification (IAV)

Instant Account Verification (IAV) is a real-time process that confirms bank account ownership and validity in seconds using open banking APIs or credential-based login—eliminating the multi-day wait of traditional microdeposit verification.

Fintech

Bank Account Verification

Bank account verification confirms that a bank account exists, is active, and is owned by the person claiming it before initiating ACH payments, payouts, or direct deposits.

Fintech

Open Banking

Open banking lets regulated third-party providers access consumer bank account data and initiate payments via standardised APIs — with the account holder's consent. It underpins account-to-account payments, variable recurring payments, and a new generation of financial products.

Payments

NACHA

NACHA is the nonprofit organization that governs the U.S. ACH payment network, setting binding rules and standards for electronic funds transfers between financial institutions. Every ACH participant — banks, processors, and merchants — must comply with NACHA's Operating Rules.

Payments

Direct Debit

Direct Debit is a payment method that allows a business to pull funds directly from a customer's bank account, with the customer's prior authorization. It is widely used for recurring billing, subscriptions, and utility payments.