Skip to main content
POST
/
v1
/
in
/
banking
/
ifsc
/
details
IFSC
curl --request POST \
  --url https://base_url/v1/in/banking/ifsc/details \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "ifsc": "ABCD0EFGHIJ"
}
'
{
  "code": "0x0200",
  "message": "Record found successful.",
  "status": "SUCCESS",
  "data": {
    "bankName": "Bank name",
    "bankCode": "ABCD",
    "branch": "Banl BRANCH",
    "centre": "Centre Name",
    "district": "district",
    "state": "UTTAR PRADESH",
    "city": "city name",
    "address": "0000 abcdefg colony, xyz city, UP 220001",
    "micr": "123457873",
    "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

The body is of type object.

Response

OK

The response is of type object.