Overview
Before initiating a transaction or linking a manually entered bank account, it’s important to ensure the account and routing number combination is valid. GrailPay offers a dedicated endpoint that validates these details in real-time to reduce the risk of failed transactions and ACH returns. This validation is especially useful during onboarding or when updating a user’s financial information, as it helps ensure the account is active and properly formatted for ACH.This endpoint only supports manually entered bank accounts. For accounts linked through Bank Link or Plaid,
validation is handled as part of the linking process.
Use Cases
You might use this endpoint when:- Collecting account details via a custom onboarding form
- Adding a bank account outside the registration flow
- Verifying bank details before submitting a transaction
- Implementing safeguards to reduce return-related fraud
- Performing name matching verification against account holder information
Account Intelligence Versions
The response payload varies depending on which version of account intelligence you select. We recommend using V3 for the most comprehensive validation insights.Version 3 (Recommended)
V3 provides comprehensive decisioning insights including transaction history, name matching, and duplicate detection. For complete request and response schema, refer to:To enable name matching, set
name_match: true in the actions.account_intelligence object of your request payload.
When name matching is enabled, the person object with first_name and last_name is required.
If you are not using name matching, the person object is optional.V3 Response Fields
To learn more about our V3 Response fields, refer to the Account Intelligence V3 Documentation.Version 2
V2 returns a confidence score with a human-readable confidence level.V2 Response Fields
| Field | Type | Description |
|---|---|---|
confidence_score | decimal | Overall confidence score (0.0 - 1.0) |
confidence_level | string | Human-readable confidence level (e.g., very high, high, medium, low) |
Version 1 (Deprecated)
V1 returns a simple validity status.V1 Response Fields
| Field | Type | Description |
|---|---|---|
validity | string | Validation result: valid, invalid, or not_validated |
