Enkash Developer Portal
Home
Home
Login
  1. Bank Account Verification
  • Back to home
  • Verification Suite APIs
  • Bank Account Verification
    • Bank Account Verification PennyLess/PennyDrop
      POST
  • GSTN Verification
    • Gstin Verification
  • PAN Verification
    • Pan Verification
  • UPI(VPA) Verification
    • Vpa Verification
  1. Bank Account Verification

Bank Account Verification PennyLess/PennyDrop

POST
/api/v0/pennyDrop

Request

Body Params application/json
beneficiaryAccountNumber
string 
required
Beneficiary Account Number which needed to be verified
customerRequestId
string 
required
Unique Request Id for each request
beneficiaryIfscCode
string 
required
IFSC code of Beneficiary Account Number
pennyLess
boolean 
required
True for PennyLess Verification, False for Penn Drop verification
Example
{
  "beneficiaryAccountNumber": "IOTwwQhA",
  "customerRequestId": "string",
  "beneficiaryIfscCode": "xcHx00qt60T",
  "pennyLess": true
}

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/api/v0/pennyDrop' \
--header 'Content-Type: application/json' \
--data-raw '{
  "beneficiaryAccountNumber": "IOTwwQhA",
  "customerRequestId": "string",
  "beneficiaryIfscCode": "xcHx00qt60T",
  "pennyLess": true
}'

Responses

🟢200Success
application/json
Body
response_code
integer 
required
response_message
string 
required
payload
object 
required
ifsc
string 
required
requestId
string 
required
enkashUniqueId
string 
required
utr
string 
required
status
string 
required
beneficiaryName
string 
required
beneficiaryAccountNumber
string 
required
customerRequestId
string 
required
beneficiaryIfscCode
string 
required
pennyLess
boolean 
required
Example
{
    "response_code": 0,
    "response_message": "string",
    "payload": {
        "ifsc": "string",
        "requestId": "string",
        "enkashUniqueId": "string",
        "utr": "string",
        "status": "string",
        "beneficiaryName": "string"
    },
    "beneficiaryAccountNumber": "string",
    "customerRequestId": "string",
    "beneficiaryIfscCode": "string",
    "pennyLess": true
}
Modified at 2025-07-07 18:47:25
Next
Gstin Verification
Built with