# AI tells a US small business that ACH same-day returns are free and unlimited, ignoring NACHA's per-entry fee and daily return caps

- **ID:** `banking/us-ach-same-day-return-limit`
- **Domain:** banking
- **Category:** resource_error
- **Error Code:** `R01 - Insufficient Funds (return code) with same-day flag`
- **Verification:** ai_generated
- **Fix Rate:** 85%

## Root Cause

NACHA Operating Rules impose a $4.50 per-entry fee for same-day ACH returns and a daily limit of 15,000 same-day return entries per ODFI, to manage liquidity risk.

## Version Compatibility

| Version | Status | Introduced | Deprecated |
|---------|--------|------------|------------|
| NACHA Operating Rules 2024 | active | — | — |
| FedACH 2024 | active | — | — |
| NACHA Same-Day ACH 2024 | active | — | — |

## Workarounds

1. **Configure your ACH origination software to split returns: send standard returns for non-urgent items and same-day returns only for critical ones; monitor daily count against the 15,000 limit.** (90% success)
   ```
   Configure your ACH origination software to split returns: send standard returns for non-urgent items and same-day returns only for critical ones; monitor daily count against the 15,000 limit.
   ```
2. **Implement a cost-benefit check: if the return amount is less than $4.50, use standard return instead of same-day to avoid loss.** (85% success)
   ```
   Implement a cost-benefit check: if the return amount is less than $4.50, use standard return instead of same-day to avoid loss.
   ```
3. **Use the Nacha Risk Management Portal to pre-verify account status before origination, reducing return rates.** (75% success)
   ```
   Use the Nacha Risk Management Portal to pre-verify account status before origination, reducing return rates.
   ```

## Dead Ends

- **** — Each same-day return costs $4.50; high volume can exceed the daily cap (15,000), causing rejections and penalties. (90% fail)
- **** — Standard returns have no per-entry fee but still follow NACHA return rules; confusing the two leads to incorrect cost projections. (70% fail)
- **** — Each return is a separate entry; batching does not reduce the number of entries or fees. (95% fail)
