Banking
Verification Penny Drop
Banking
Verification Penny Drop
POST
/
api
/
v1
/
in
/
banking
/
pennydrop
/
verify
curl --request POST \
--url https://infopass.in/api/v1/in/banking/pennydrop/verify \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '{
"accountNumber": "24270100020109",
"ifsc": "BARB0HAKIKT"
}'
{
"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": "BARB",
"bankName": "Bank of Baroda",
"branch": "MUNSHIGANJ,SULTANPUR",
"centre": "SULTANPUR",
"district": "SULTANPUR",
"state": "UTTAR PRADESH",
"city": "SULTANPUR",
"address": "MUNSHIGANJ, SULTANPUR, UP 227412",
"contact": "+910221800223344",
"imps": "1",
"rtgs": "1",
"neft": "1",
"upi": "1",
"micrCheck": "1"
}
}
}
Authorizations
Basic authentication header of the form Basic <encoded-value>
, where <encoded-value>
is the base64-encoded string username:password
.
Body
application/json · object
Response
200
application/json
OK
The response is of type object
.
curl --request POST \
--url https://infopass.in/api/v1/in/banking/pennydrop/verify \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '{
"accountNumber": "24270100020109",
"ifsc": "BARB0HAKIKT"
}'
{
"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": "BARB",
"bankName": "Bank of Baroda",
"branch": "MUNSHIGANJ,SULTANPUR",
"centre": "SULTANPUR",
"district": "SULTANPUR",
"state": "UTTAR PRADESH",
"city": "SULTANPUR",
"address": "MUNSHIGANJ, SULTANPUR, UP 227412",
"contact": "+910221800223344",
"imps": "1",
"rtgs": "1",
"neft": "1",
"upi": "1",
"micrCheck": "1"
}
}
}