FDIC Bank Data
Verify FDIC-insured banks by name, certificate number, or state. Returns total assets, deposits, net income, branch count, and charter type.
Endpoints
GET /api/v1/pro/banks Requires API key Search banks by name, FDIC certificate number, state, or city.
Parameters
| name | Bank name (partial match) |
| cert | FDIC certificate number |
| state | Two-letter state code |
| city | City name (partial match) |
| limit | Max results (default 25, max 100) |
| offset | Pagination offset |
Example
curl -H "Authorization: Bearer pro_YOUR_KEY" \
"https://api.verilexdata.com/api/v1/pro/banks?name=Chase&state=NY" Response
{
"dataset": "banks",
"count": 1,
"data": [
{
"cert": 628,
"name": "JPMORGAN CHASE BANK, NATIONAL ASSOCIATION",
"city": "COLUMBUS",
"state": "OH",
"total_assets": 3386000000000,
"total_deposits": 2400000000000,
"net_income": 48000000000,
"num_branches": 4875,
"charter_type": "N",
"active": true,
"established_date": "1824-09-01"
}
]
} GET /api/v1/pro/banks/stats Free Dataset coverage: total banks, latest update, source info.
GET /api/v1/pro/banks/sample Free 10 sample records (top banks by total assets).
ABA Routing Number Lookup
Bundled with the banks dataset. Look up any US bank routing number to verify the institution.
GET /api/v1/pro/banks/aba Requires API key | routing_number | 9-digit ABA routing number |
| bank_name | Bank name (partial match) |
| state | Two-letter state code |
BIN (Card Number) Lookup
Bundled with the banks dataset. Identify the issuing bank, card network, and card type from the first 6-8 digits of any card number.
GET /api/v1/pro/banks/bin Requires API key | bin | First 6-8 digits of card number |
| brand | VISA, MASTERCARD, AMEX, DISCOVER |
| issuer | Issuing bank name (partial match) |
| country | ISO country code (e.g. US, GB) |
| type | DEBIT, CREDIT, PREPAID |