FDIC Bank Finder - Institution Search & Financial Data avatar

FDIC Bank Finder - Institution Search & Financial Data

Pricing

Pay per event

Go to Apify Store
FDIC Bank Finder - Institution Search & Financial Data

FDIC Bank Finder - Institution Search & Financial Data

Extract FDIC-insured bank and thrift institution data from the FDIC BankFind Suite API. Search by state, asset size, charter class, regulator, and active status. Returns institution profile, financial summary data (assets, deposits, equity, net income), and branch office count. No API key required.

Pricing

Pay per event

Rating

0.0

(0)

Developer

BowTiedRaccoon

BowTiedRaccoon

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

8 days ago

Last modified

Share

FDIC Bank Finder Crawler

Pull FDIC-insured bank and thrift institution data from the public FDIC BankFind Suite API. Returns institution profile, financial summary (assets, deposits, equity, net income, ROA, ROE), branch office count, charter class, and primary regulator for 27,000+ US institutions — active and historical. No API key required.


FDIC Bank Crawler Features

  • Extracts 25 fields per institution including FDIC certificate number, Fed RSSD ID, and holding-company name
  • Returns financial summary as of the last reporting period — assets, deposits, equity, net income, ROA, ROE
  • Filter by state, charter class (N, SM, NM, OI, SB, SA), primary regulator (OCC, FED, FDIC, OTS), and asset-size range
  • Optional activeOnly flag — include or exclude failed/closed institutions
  • Sort by total assets, name, certificate number, state, or established date
  • No API key required, no proxy — the FDIC API is open and stable

Who Uses FDIC Bank Data?

  • Fintech sales and BD teams — Build outreach lists of community banks filtered by asset size and state
  • Compliance and risk teams — Verify counterparty status (active, failed, merged) against the authoritative FDIC register
  • Financial researchers — Track consolidation trends, branch counts, and capital ratios across charter classes
  • Investment analysts — Screen banking sector peers by ROA, ROE, and asset size before deeper modelling
  • GovTech and journalism — Build public-interest dashboards on bank failures, branch closures, and CRA performance

How the FDIC Bank Crawler Works

  1. Configure filters — Pick state, charter class, regulator, asset-size band, and active/historical scope.
  2. Hit the BankFind API — The crawler queries banks.data.fdic.gov/api/institutions with your filters and the requested sort order.
  3. Paginate — FDIC's API returns up to 10,000 records per query. The crawler pages through until it has maxItems records or the result set ends.
  4. Export — Each institution lands as a flat JSON record with profile, address, financials, and a direct profile-page URL.

Input

All active national banks in California

{
"activeOnly": true,
"state": "CA",
"charterClass": "N",
"sortBy": "ASSET",
"maxItems": 0
}

Banks above $1B in assets

{
"activeOnly": true,
"minAssets": 1000000,
"sortBy": "ASSET",
"maxItems": 500
}

Historical / failed institutions in Texas

{
"activeOnly": false,
"state": "TX",
"sortBy": "ESTYMD",
"maxItems": 1000
}
FieldTypeDefaultDescription
activeOnlybooleantrueWhen true, returns only currently active FDIC-insured institutions.
statestringTwo-letter state code (e.g. CA, NY, TX). Empty = all states.
charterClassstringN, SM, NM, OI, SB, or SA. Empty = all.
regulatorstringOCC, FED, FDIC, or OTS. Empty = all.
minAssetsinteger0Minimum total assets in thousands of dollars (e.g. 1000000 = $1B).
maxAssetsinteger0Maximum total assets in thousands. 0 disables the upper bound.
sortBystringASSETASSET, NAME, CERT, STALP, or ESTYMD.
maxItemsinteger10Cap on records. 0 = unlimited (up to 27,849).

FDIC Bank Crawler Output Fields

{
"fdic_cert": 3511,
"institution_name": "JPMorgan Chase Bank, National Association",
"city": "Columbus",
"state": "OH",
"zip": "43240",
"address": "1111 Polaris Parkway",
"county": "Delaware",
"established_date": "01/01/1824",
"last_report_date": "12/31/2024",
"active": true,
"charter_class": "N",
"regulator": "OCC",
"insured_date": "01/01/1934",
"total_assets_thousands": 3500000000,
"total_deposits_thousands": 2500000000,
"total_equity_thousands": 310000000,
"net_income_thousands": 42000000,
"return_on_assets": 1.21,
"return_on_equity": 13.45,
"number_of_offices": 4842,
"website_url": "https://www.jpmorganchase.com",
"fed_rssd_id": 852218,
"holding_company": "JPMorgan Chase & Co",
"specialization_group": 1,
"fdic_profile_url": "https://banks.data.fdic.gov/explore/historical/?searchText=3511"
}
FieldTypeDescription
fdic_certintegerFDIC Certificate Number — unique institution identifier
institution_namestringFull legal name
citystringMain office city
statestringTwo-letter state code
zipstringMain office ZIP
addressstringStreet address of the main office
countystringCounty
established_datestringDate the institution was established (MM/DD/YYYY)
last_report_datestringMost recent financial report date
activebooleanCurrently active and FDIC-insured
charter_classstringN, SM, NM, SB, SA, OI
regulatorstringPrimary federal regulator
insured_datestringDate FDIC insurance began
total_assets_thousandsintegerTotal assets, in thousands of dollars
total_deposits_thousandsintegerTotal deposits, in thousands of dollars
total_equity_thousandsstringTotal equity capital, in thousands of dollars
net_income_thousandsintegerNet income for the most recent reporting period
return_on_assetsnumberROA as a percentage
return_on_equitynumberROE as a percentage
number_of_officesintegerTotal domestic offices/branches
website_urlstringInstitution website URL
fed_rssd_idintegerFederal Reserve RSSD identifier
holding_companystringParent holding company, when applicable
specialization_groupintegerFDIC specialization group code
fdic_profile_urlstringDirect URL to the institution's FDIC BankFind profile

FAQ

How do I get FDIC bank data without an API key?

FDIC Bank Crawler hits the public banks.data.fdic.gov API, which doesn't require authentication. Configure filters, set maxItems, and run. The actor handles pagination and assembles flat records.

How much does this actor cost to run?

FDIC Bank Crawler uses pay-per-event pricing on the default_2603_basic profile at a 1.0x coefficient. No proxy fees. Pulling all 4,000+ active US banks costs cents in platform fees.

What does charter class mean?

FDIC Bank Crawler returns charter class as a code: N (National Bank), SM (State Member Bank), NM (State Non-Member Bank), SB (State Savings Bank), SA (Savings Association), OI (OTS-Insured Institution). Filter by class with the charterClass input, or keep them all and segment downstream.

Can I get failed or historical institutions?

FDIC Bank Crawler accepts an activeOnly flag. Turn it off and you get historical and failed institutions alongside active ones. Useful for studying merger waves, bank failures during specific years, or building a full sector history.

Does this actor need proxies?

FDIC Bank Crawler runs proxy-free. The FDIC API is open and reliable; the actor paces requests within its published limits.


Need More Features?

Need branch-level office data, Call Report financial detail beyond the summary, or CRA performance ratings? Open an issue or get in touch.

Why Use FDIC Bank Crawler?

  • Authoritative source — Hits the FDIC BankFind Suite API directly. No middleman, no stale exports.
  • Filter where it counts — Asset-size band, charter class, regulator, and state all apply server-side, so you don't waste records you can't use.
  • Joinable IDs — Returns both FDIC certificate number and Federal Reserve RSSD ID per institution, which lets you join to Y-9C, Call Report, and other Fed datasets without fuzzy name matching.