POST
/
api
/
v1
/
in
/
banking
/
ifsc
/
details
curl --request POST \
  --url https://infopass.in/api/v1/in/banking/ifsc/details \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{
  "ifsc": "BARB0HAKIKT"
}'
{
  "code": "0x0200",
  "message": "Record found successful.",
  "status": "SUCCESS",
  "data": {
    "bankName": "Bank of Baroda",
    "bankCode": "BARB",
    "branch": "HAKIKATNAGAR BRANCH",
    "centre": "SAHARANPUR",
    "district": "SAHARANPUR",
    "state": "UTTAR PRADESH",
    "city": "SAHARANPUR",
    "address": "HAKIKATNAGAR BRANCH,NEAR POLICE LINES, HAKIKAT NAGAR,SAHARANPUR (U.P.),2470",
    "micr": "247012003",
    "swift": null,
    "contact": "+910221800223344",
    "imps": true,
    "rtgs": false,
    "neft": false,
    "upi": true,
    "iso3166": "IN-UP"
  }
}

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 · object

Response

200
application/json
OK

The response is of type object.