Fintech APIs & Platform for KYC, Verification & Transactions in India | Eko Platform Services
Eko Platform Services Logo

POSTBulk Bank Account Verification

Submit multiple bank accounts for penny-drop verification in a single API call; poll a status API for per-account results.

POST/tools/kyc/bank-account/bulk

Accepts an array of bank account + IFSC pairs and enqueues them for asynchronous penny-drop verification. Returns a bulk_reference_id immediately; use the Bulk Bank Account Verification Status API to retrieve per-account results once processing completes. Ideal for batch onboarding, payroll runs, and large-scale disbursement pipelines where sequential single-account calls would be too slow.

Request

Body parameters

initiator_idstringRequired

Registered mobile number of the API user (see Platform Credentials).

example: 9962981729

client_ref_idstringoptional

Unique reference ID per API call, generated by your system (max 20 characters).

example: 2026010100123456789

entriesarrayRequired

Array of bank account objects to verify. Each entry must contain bank_account and ifsc. Optionally include user_code per entry to attribute verifications to different retailers.

example: [object Object],[object Object]

entries[].bank_accountstringRequired

Bank account number for this entry.

example: 1234567890

entries[].ifscstringRequired

IFSC code for this entry's bank account.

example: SBIN0001234

entries[].user_codestringoptional

Per-entry retailer user code, if attributing individual verifications to different agents.

example: 20810200

Responses

  • statusnumber

    Primary success indicator (0 = success).

  • messagestring

    Human-readable response / error message.

  • response_status_idnumber

    Granular status id; see the shared error-codes table.

  • response_type_idnumber

    A unique id for every possible response shape (success or error) — useful for client logic branching and analytics.

  • dataobject

    API-specific response payload.

    • bulk_reference_idstring

      Unique reference ID for this bulk verification batch. Pass this to the Bulk Bank Account Verification Status API to poll for per-account results.

    • reference_idnumber

      Numeric reference ID for the submitted batch request, used for internal tracking.

Next steps

Related