Micro-Deposits

Link a customer’s bank account, verify it with micro-deposits, then start ACH transactions—all in one smooth flow.

⚠️

Deprecation Notice — Effective June 8, 2026

The micro-deposit verification steps below (Step 2 and Step 3) are deprecated for new bank account connections. Existing verified accounts and in-progress micro-deposit verifications are not affected.

For new bank account connections, use Plaid Authorization →

Prerequisites


Flow Overview

  1. Create Funding Source (Unverified)
  2. Send Micro-Deposits
  3. Verify Micro-Deposits
  4. (Optional) Hosted Verification Redirect

1. Create Funding Source (Unverified)

POST https://{env}.seamlesschex.com/ach/v2/funding-source
Authorization: Bearer sk_{YOUR_KEY}
Content-Type: application/json

{
  "user_id": "usr_abc123",
  "routing_number": "021000021",
  "account_number": "000123456789",
  "account_type": "checking",
  "nickname": "Main Checking"
}

2. Send Micro-Deposits DEPRECATED

As of June 8, 2026, this endpoint returns HTTP 410 Gone for new initiations:

{ "message": "Micro-deposit verification is deprecated. Use Plaid verification." }
POST https://{env}.seamlesschex.com/ach/v2/funding-source/initiate/verification
Authorization: Bearer sk_{YOUR_KEY}
Content-Type: application/json

{
  "funding_source_id": "fs_123abc"
}

3. Verify Micro-Deposits

POST https://{env}.seamlesschex.com/ach/v2/funding-source/verify
Authorization: Bearer sk_{YOUR_KEY}
Content-Type: application/json

{
  "funding_source_id": "fs_123abc",
  "amounts": [0.12, 0.15]
}

4. Hosted Verification Redirect (Optional)

Let customers enter amounts in a Seamless ACH-hosted modal instead of your own UI:

https://dashboard.seamlesschex.com/ach/#/bank-account/{PUBLIC_KEY}/{USER_ID}/{FUNDING_SOURCE_ID}?successUrl={SUCCESS_URL}&cancelUrl={CANCEL_URL}

After Verification

Once your funding source is Verified, you can immediately:


Summary

  1. Link bank account → get funding_source_id
  2. Send micro-deposits → wait for deposits
  3. Verify amounts → status becomes Verified
  4. (Optional) Use hosted UI for deposit entry

This consolidated flow ensures only verified accounts get charged—and gives your customers a smooth ACH onboarding experience.