Skip to main content
POST
/
v1
/
in
/
banking
/
pennydrop
/
verify
Bank Verification Penny Drop
curl --request POST \
  --url https://base_url/v1/in/banking/pennydrop/verify \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "accountNumber": "12345678901234",
  "ifsc": "ABCD0EFGHIJ"
}
'
{
  "code": "0x0200",
  "message": "Record found successful.",
  "status": "SUCCESS",
  "data": {
    "accountExists": "1",
    "fullName": "DUMMY FULLNAME",
    "upiId": null,
    "ifscDetails": {
      "micr": "228***002",
      "iso3166": "IN-UP",
      "swift": null,
      "bankCode": "ABCD",
      "bankName": "Abcdefg Bank",
      "branch": "branch-name,cityname",
      "centre": "cityname",
      "district": "cityname",
      "state": "UTTAR PRADESH",
      "city": "cityname",
      "address": "branch, cityname, UP 245678",
      "contact": "+910221800223344",
      "imps": "1",
      "rtgs": "1",
      "neft": "1",
      "upi": "1",
      "micrCheck": "1"
    }
  }
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Body

application/json

The body is of type object.

Response

OK

The response is of type object.