US Bank and Credit Union Branch Locations + API
Access comprehensive data on U.S. bank and credit union branches, including location details and services offered. Our API provides real-time data to power your applications.
Access comprehensive data on U.S. bank and credit union branches, including location details and services offered. Our API provides real-time data to power your applications.
Query our database with your own code and projects.
[
{
"idrssd": "37",
"aba_routing": "061107146",
"name": "Bank Of Hancock County",
"address": "12855 Broad Street",
"city": "Sparta",
"st": "GA",
"zip_code": "31087",
"br_id": "6429",
"br_address": "12855 Broad St",
"br_city": "Sparta",
"br_state": "GA",
"br_zip": "31087",
"br_location": "Bank Of Hancock County",
"br_type": "Corporate Office",
"type_fin_inst": "Bank",
"url": "bankofhancock.com",
"source": "FFIEC",
"last_call_report": "2021-12-31",
"last_updated": "03-14-2022"
}
]
curl "https://example.com/api/?page=1&limit=250"
curl "https://example.com/api/?page=1&limit=4&filter_column=url&filter_value=centralbankonline.com"
import requests
response = requests.get("https://example.com/api/?page=1&limit=250")
print(response.json())
import requests
response = requests.get("https://example.com/api/?page=1&limit=4&filter_column=url&filter_value=centralbankonline.com")
print(response.json())
<?php
$response = file_get_contents("https://example.com/api/?page=1&limit=250");
echo $response;
?>
<?php
$response = file_get_contents("https://example.com/api/?page=1&limit=4&filter_column=url&filter_value=centralbankonline.com");
echo $response;
?>
const https = require('https');
https.get("https://example.com/api/?page=1&limit=250", (resp) => {
let data = '';
resp.on('data', (chunk) => { data += chunk; });
resp.on('end', () => { console.log(JSON.parse(data)); });
});
const https = require('https');
https.get("https://example.com/api/?page=1&limit=4&filter_column=url&filter_value=centralbankonline.com", (resp) => {
let data = '';
resp.on('data', (chunk) => { data += chunk; });
resp.on('end', () => { console.log(JSON.parse(data)); });
});