Bank List

Post  https://api.bos.center/api/BOS/BankList


Responses

200

200

Response

200

RESPONSE BODY

JSON

400

400

Response

400

RESPONSE BODY

Object


Did this page help you?     Yes    No

Language
shell Shell
python Python
node Node
c# C#
php PHP

cURL

curl --location 'https://api.bos.center/api/BOS/BankList' \
                                
import http.client

conn = http.client.HTTPSConnection("api.bos.center")
payload = ''
headers = {}
  conn.request ("GET", "/api/BOS/BankList", payload, headers)
}
res = conn.getresponse()
data = res.read()

print(data.decode("utf-8"))
                                
var requests = require("request");
var options = { 
  "method" : "GET",
  "url" : 'https://api.bos.center/api/BOS/BankList',
  "headers" : {}
}; 
request(options, function(error, response){
   if(error) throw new Error(error);
   console.log(response.body); 
}); 
                                
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get,'https://api.bos.center/api/BOS/BankList')
var response =  await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
                                
<?php
$curl =  curl_init();
curl_setopt_array($curl, array(
  CURLOPT_URL =>  'https://api.bos.center/api/BOS/BankList',
  CURLOPT_RETURNTRANSFER =>  true,
  CURLOPT_ENCODING =>  '',
  CURLOPT_MAXREDIRS =>  10,
  CURLOPT_TIMEOUT =>  0,
  CURLOPT_FOLLOWLOCATION =>  true,
  CURLOPT_HTTP_VERSION =>  CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST =>  'GET',
));
$response =  curl_exec($curl);
curl_close($curl);
echo $response;
                                

RESPONSE

200

400

-Result

Example

{
    "statuscode": "TXN",
    "actcode": null,
    "status": "Banks fetched successfully",
    "data": [
        {
            "bankId": 109005,
            "name": "STATE BANK OF INDIA",
            "ifscGlobal": "SBIN0000001",
            "ifscAlias": "SBIN",
            "rtgsEnabled": 1,
            "rtgsFailureRate": "0",
            "neftEnabled": 1,
            "neftFailureRate": "0",
            "impsEnabled": 1,
            "impsFailureRate": "2",
            "upiEnabled": 0,
            "upiFailureRate": "0"
        },
        {
            "bankId": 15910,
            "name": "ICICI Bank",
            "ifscGlobal": "ICIC0000011",
            "ifscAlias": "ICIC",
            "rtgsEnabled": 1,
            "rtgsFailureRate": "0",
            "neftEnabled": 1,
            "neftFailureRate": "0",
            "impsEnabled": 1,
            "impsFailureRate": "2",
            "upiEnabled": 0,
            "upiFailureRate": "0"
        },
		
		"timestamp": "2023-07-27 17:53:23",
    "ipay_uuid": "h00699bf1a60-9c8e-4bfd-a74a-403dfb98a302",
    "orderid": null,
    "environment": "SANDBOX",
    "internalCode": null
}
                                
{}