v1

latestOpenAPI 3.0.32026-07-14108241269.2 KB
Bank Verification

Pennyless Bank Account Verification

The Pennyless Bank Account Verification API allows verification of a bank account's authenticity using only the account number and IFSC code, without initiating any monetary transaction. This API performs a secure backend validation through banking networks to confirm whether the provided account details are valid and active. It returns key information such as account holder name, account status, and validation result, helping businesses ensure accurate beneficiary onboarding and reduce fraud risks. The service eliminates the need for penny drop transactions, making the verification process faster, cost-efficient, and seamless for end users.

post/verify/bank_verification/pennyless

Request body

account_numberstring required
ifsc_codestring required

Example request

{
  "account_number": "123456789012",
  "ifsc_code": "HDFC0001234"
}

Response

Success or Failure Response

OR

Example response

{
  "status": "success",
  "result": {
    "account_number": "**********1234",
    "is_valid": true,
    "account_holder_name": "JAI SHOBHIT",
    "account_ifsc": "ASDF0B1234"
  },
  "chargeble": "true",
  "user_consent": "true"
}