Skip to main content
GET
/
bank-account
/
bulk
Get Bulk BAV Status V2
curl --request GET \
  --url https://sandbox.cashfree.com/verification/bank-account/bulk \
  --header 'x-client-id: <api-key>' \
  --header 'x-client-secret: <api-key>'
import requests

url = "https://sandbox.cashfree.com/verification/bank-account/bulk"

headers = {
"x-client-id": "<api-key>",
"x-client-secret": "<api-key>"
}

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

print(response.text)
const options = {
method: 'GET',
headers: {'x-client-id': '<api-key>', 'x-client-secret': '<api-key>'}
};

fetch('https://sandbox.cashfree.com/verification/bank-account/bulk', 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/bank-account/bulk",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"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"
"net/http"
"io"
)

func main() {

url := "https://sandbox.cashfree.com/verification/bank-account/bulk"

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

req.Header.Add("x-client-id", "<api-key>")
req.Header.Add("x-client-secret", "<api-key>")

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

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

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://sandbox.cashfree.com/verification/bank-account/bulk")
.header("x-client-id", "<api-key>")
.header("x-client-secret", "<api-key>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://sandbox.cashfree.com/verification/bank-account/bulk")

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

request = Net::HTTP::Get.new(url)
request["x-client-id"] = '<api-key>'
request["x-client-secret"] = '<api-key>'

response = http.request(request)
puts response.read_body
{
  "bulk_verification_id": "test-bulk-123",
  "bulk_reference_id": 1234,
  "entries": [
    {
      "bank_account": 11020001772,
      "ifsc": "HDFC0000001",
      "name": "John Doe",
      "phone": 7709736537,
      "reference_id": 1097293,
      "name_at_bank": "John Doe",
      "account_status": "VALID",
      "account_status_code": "ACCOUNT_IS_VALID",
      "utr": "404223241811",
      "name_match_score": "100",
      "name_match_result": "DIRECT_MATCH"
    }
  ]
}
  • Cashfree does not support the verification of Deutsche Bank and Paytm Payments Bank accounts.
  • For further queries, please refer to the Bank Account Verification FAQs.

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.

Query Parameters

bulk_reference_id
integer

It is unique ID you receive in the response of Bulk Bank Account Verification API. format: int64

bulk_verification_id
string

It is the unique ID created to identify the bulk bank validation request.

reference_id
integer

It is unique ID for a single entry you receive in the response of Get status of Bulk Bank Account Verification API. format: int64

Response

Success response for Get Bulk BAV Status V2.

bulk_reference_id
integer

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

Example:

1234

bulk_verification_id
string

It displays the unique ID you created to identify the API request.

Example:

"test-bulk-123"

entries
object[]

It displays the verified bank account information.

Example:
[
{
"reference_id": 34,
"name_at_bank": "BHARATHTEST GKUMARUT",
"bank_name": "YES BANK",
"city": "MUMBAI",
"branch": "SANTACRUZ, MUMBAI",
"micr": 400532038,
"name_match_score": "90.00",
"name_match_result": "GOOD_PARTIAL_MATCH",
"account_status": "VALID",
"account_status_code": "ACCOUNT_IS_VALID",
"utr": "404223241811"
}
]