Skip to main content
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"
}
'
import requests

url = "https://sandbox.cashfree.com/verification/ifsc"

payload = {
"verification_id": "test_verification_id",
"ifsc": "HDFC0000001"
}
headers = {
"x-client-id": "<api-key>",
"x-client-secret": "<api-key>",
"Content-Type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.text)
const options = {
method: 'POST',
headers: {
'x-client-id': '<api-key>',
'x-client-secret': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({verification_id: 'test_verification_id', ifsc: 'HDFC0000001'})
};

fetch('https://sandbox.cashfree.com/verification/ifsc', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://sandbox.cashfree.com/verification/ifsc",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'verification_id' => 'test_verification_id',
'ifsc' => 'HDFC0000001'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-client-id: <api-key>",
"x-client-secret: <api-key>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"strings"
"net/http"
"io"
)

func main() {

url := "https://sandbox.cashfree.com/verification/ifsc"

payload := strings.NewReader("{\n \"verification_id\": \"test_verification_id\",\n \"ifsc\": \"HDFC0000001\"\n}")

req, _ := http.NewRequest("POST", url, payload)

req.Header.Add("x-client-id", "<api-key>")
req.Header.Add("x-client-secret", "<api-key>")
req.Header.Add("Content-Type", "application/json")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.post("https://sandbox.cashfree.com/verification/ifsc")
.header("x-client-id", "<api-key>")
.header("x-client-secret", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"verification_id\": \"test_verification_id\",\n \"ifsc\": \"HDFC0000001\"\n}")
.asString();
require 'uri'
require 'net/http'

url = URI("https://sandbox.cashfree.com/verification/ifsc")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Post.new(url)
request["x-client-id"] = '<api-key>'
request["x-client-secret"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"verification_id\": \"test_verification_id\",\n \"ifsc\": \"HDFC0000001\"\n}"

response = http.request(request)
puts response.read_body
{
  "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 two-factor authentication is selected as Public Key. More details.

Body

application/json

Find the request parameters to retrieve the IFSC information.

verification_id
string
default:test_verification_id
required

It is the unique ID you create to identify the verification request. The maximum character limit is 50. Only alphaumeric, period (.), hyphen (-), and underscore ( _ ) are allowed.

Example:

"test_verification_id"

ifsc
string
default:HDFC0000001
required

It is the IFSC information of the bank account to be validated. It should be an alphanumeric value of 11 characters. The first 4 characters should be alphabets, the 5th character should be a 0, and the remaining 6 characters should be numerals.

Example:

"HDFC0000001"

Response

Success response for IFSC Verification V2.

verification_id
string

It displays the unique ID you created to identify the verification ID.

Example:

"test_verification_id"

reference_id
integer

It displays the unique ID created by Cashfree Payments for reference purposes. format: int64

Example:

123

status
string

It displays the status of the IFSC information. Possible values are: - VALID: IFSC provided is valid.

Example:

"VALID"

bank
string

It displays the name of the bank.

Example:

"Bank Name"

ifsc
string

It displays the IFSC information.

Example:

"HDFC0000001"

neft
string

It displays the status of NEFT.

Example:

"Live"

imps
string

It displays the status of IMPS.

Example:

"Live"

rtgs
string

It displays the status of RTGS.

Example:

"Live"

upi
string

It displays the status of UPI.

Example:

"Live"

ft
string

It displays the status of fund transfer.

Example:

"Live"

card
string

It displays the status of card.

Example:

"Live"

micr
integer

It displays the MICR code that can be used to identify the bank.

Example:

560751026

nbin
integer

It displays the National Bank Identification Number (NBIN) information.

Example:

1234

address
string

It displays the physical address information of the branch.

Example:

"GROUND FLOOR, 123, ABC CIRCLE, XYZ MAIN ROAD, BANGALORE - 560098"

city
string

It displays the city name where the branch is located.

Example:

"BANGALORE"

state
string

It displays the name of the state where the branch is located.

Example:

"KARNATAKA"

branch
string

It displays the name of the branch.

Example:

"BANGALORE - RAJA RAJESHWARI NAGAR BRANCH"

ifsc_subcode
string

It displays the subcode of the IFSC information.

Example:

"HDFC0"

category
string

It displays the category of the bank.

Example:

"DIRECT_MEMBER"

swift_code
string

It displays the code that identifies banks and financial institutions worldwide. The code helps pinpoint the specific bank.

Example:

"HDFCINBB"