POST
/
ifsc
IFSC Verification V2
curl --request POST \
  --url https://sandbox.cashfree.com/verification/ifsc \
  --header 'Content-Type: application/json' \
  --header 'x-client-id: <api-key>' \
  --header 'x-client-secret: <api-key>' \
  --data '{
  "verification_id": "test_verification_id",
  "ifsc": "HDFC0000001"
}'
{
"verification_id": "test_verification_id",
"reference_id": 12345,
"status": "VALID",
"bank": "Bank Name",
"ifsc": "HDFC0000001",
"neft": "Live",
"imps": "Live",
"rtgs": "Live",
"upi": "Live",
"ft": "Live",
"card": "Live",
"micr": 560751026,
"nbin": 1234,
"address": "GROUND FLOOR, 123, ABC CIRCLE, XYZ MAIN ROAD, BANGALORE - 560098",
"city": "BANGALORE",
"state": "KARNATAKA",
"branch": "BANGALORE - RAJA RAJESHWARI NAGAR BRANCH",
"ifsc_subcode": "HDFC0",
"category": "DIRECT_MEMBER",
"swift_code": "HDFCINBB"
}

Authorizations

x-client-id
string
header
required

Your unique client identifier issued by Cashfree. You can find this in your Merchant Dashboard.

x-client-secret
string
header
required

The secret key associated with your client ID. Use this to authenticate your API requests. You can find this in your Merchant Dashboard.

Headers

x-cf-signature
string

Send the signature if IP is not whitelisted.

Body

application/json

Find the request parameters to retrieve the IFSC information

The body is of type object.

Response

200
application/json

Success response for IFSC Verification V2

The response is of type object.