Skip to main content
GET
/
payout
/
v1
/
ifsc
/
{ifsc}
IFSC Verification
curl --request GET \
  --url https://payout-api.cashfree.com/payout/v1/ifsc/{ifsc} \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: <content-type>'
import requests

url = "https://payout-api.cashfree.com/payout/v1/ifsc/{ifsc}"

headers = {
    "Authorization": "<authorization>",
    "Content-Type": "<content-type>"
}

response = requests.get(url, headers=headers)

print(response.text)
const options = {
  method: 'GET',
  headers: {Authorization: '<authorization>', 'Content-Type': '<content-type>'}
};

fetch('https://payout-api.cashfree.com/payout/v1/ifsc/{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://payout-api.cashfree.com/payout/v1/ifsc/{ifsc}",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "GET",
  CURLOPT_HTTPHEADER => [
    "Authorization: <authorization>",
    "Content-Type: <content-type>"
  ],
]);

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

curl_close($curl);

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

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

func main() {

	url := "https://payout-api.cashfree.com/payout/v1/ifsc/{ifsc}"

	req, _ := http.NewRequest("GET", url, nil)

	req.Header.Add("Authorization", "<authorization>")
	req.Header.Add("Content-Type", "<content-type>")

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

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

	fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://payout-api.cashfree.com/payout/v1/ifsc/{ifsc}")
  .header("Authorization", "<authorization>")
  .header("Content-Type", "<content-type>")
  .asString();
require 'uri'
require 'net/http'

url = URI("https://payout-api.cashfree.com/payout/v1/ifsc/{ifsc}")

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

request = Net::HTTP::Get.new(url)
request["Authorization"] = '<authorization>'
request["Content-Type"] = '<content-type>'

response = http.request(request)
puts response.read_body
{
  "status": "SUCCESSS",
  "subCode": 200,
  "message": "Bank account details verified successfully",
  "data": {
    "bank": "HDFC BANK",
    "ifsc": "HDFC0004110",
    "neft": "Live",
    "imps": "Live",
    "rtgs": "Live",
    "upi": "Not Live",
    "ft": "Live",
    "card": "Not Live",
    "micr": "<string>",
    "nbin": 9240,
    "address": "HDFC BANK LTD WZ G 1 161 GROUND FLOOR UTTAM NAGAR MAIN ROAD NEW DELHI DELHI 110059",
    "city": "DELHI",
    "state": "DELHI",
    "branch": "UTTAM NAGAR",
    "ifscSubcode": "HDFC0",
    "category": "DIRECT_MEMBER",
    "swiftCode": ""
  }
}
{
  "status": "ERROR",
  "subCode": 404,
  "message": "IFSC not found. Try again with valid IFSC"
}
This API will be retired soon. Please plan to migrate to the latest version, IFSC Verification V2.

Headers

Authorization
string
required

Bearer Auth Token

Content-Type
string
required

application/json

Path Parameters

ifsc
string
required

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:

"SCBL0036078"

Response

Accepted

status
string

It represents the status of the API request.

Example:

"SUCCESSS"

subCode
string

It represents the sub code of the API request.

Example:

200

message
string

It represents the message of the API request.

Example:

"Bank account details verified successfully"

data
object

It contains the bank account information.