Discover/FDIC API
live

FDIC APIbanks.data.fdic.gov

Access FDIC bank data: institution details, financials, branch locations, failures, acquisitions, deposit summaries, and history events via 11 structured endpoints.

Endpoint health
verified 6d ago
get_institution_details
search_institutions
get_summary_of_deposits
get_bank_acquisitions
get_institution_history
11/11 passing latest checkself-healing
Endpoints
11
Updated
21d ago

What is the FDIC API?

This API exposes 11 endpoints covering the full FDIC BankFind dataset, giving developers structured access to U.S. bank institution records, quarterly financials, branch locations, and failure history dating back to 1934. The get_bank_failures endpoint returns failure records with fields like FAILDATE, COST, and RESTYPE, while search_institutions lets you filter across the full insured-institution registry by state, name, or certificate number.

Try it
FDIC certificate number of the acquiring bank (e.g., '3510' for Bank of America).
Filter for acquisitions occurring on or after this date (YYYY-MM-DD format).
api.parse.bot/scraper/f26dbfee-aeb0-415b-8a4e-2b9b66af2d24/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/f26dbfee-aeb0-415b-8a4e-2b9b66af2d24/get_bank_acquisitions?cert=3510&start_date=2010-01-01' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace banks-data-fdic-gov-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: FDIC BankFind Suite — search institutions, drill into details and sub-resources."""
from parse_apis.fdic_bankfind_suite_api import FDIC, Changecode, InstitutionNotFound

client = FDIC()

# Search for California banks — filter-based search is most reliable.
for bank in client.institutions.search(filters="STNAME:California", limit=5):
    print(bank.name, bank.city, bank.state_code, bank.assets)

# Drill into a specific institution by CERT number.
try:
    bofa = client.institutions.get(cert="3510")
    print(bofa.name, bofa.city, bofa.web_address)
except InstitutionNotFound as exc:
    print(f"Institution not found: {exc}")

# Walk sub-resources: branches, financials, acquisitions.
institution = client.institution(cert="3510")

for branch in institution.locations.list(limit=3):
    print(branch.office_name, branch.city, branch.state_code)

for quarter in institution.financials.list(limit=2):
    print(quarter.report_date, quarter.assets, quarter.return_on_equity)

for acq in institution.acquisitions.list(start_date="2010-01-01", limit=3):
    print(acq.bank_name, acq.city_name, acq.date_of_acquisition)

# Query history events by change code — uses the Changecode enum.
for event in client.historyevents.search(changecode=Changecode._223, limit=3):
    print(event.institution_name, event.effective_date, event.change_description)

# Bank failures in California.
for failure in client.bankfailures.list(filters="PSTALP:CA", limit=3):
    print(failure.name, failure.city, failure.failure_date, failure.cost)

print("exercised: institutions.search / institutions.get / locations.list / financials.list / acquisitions.list / historyevents.search / bankfailures.list")
All endpoints · 11 totalmissing one? ·

Retrieve the list of all banks acquired by a specified bank. Filters by the acquiring bank's certificate number (CERT) and optionally by date range. Returns a processed array of acquisitions including bank name, date, city, and state. Returns an empty array with total 0 when no acquisitions match.

Input
ParamTypeDescription
certrequiredstringFDIC certificate number of the acquiring bank (e.g., '3510' for Bank of America).
start_datestringFilter for acquisitions occurring on or after this date (YYYY-MM-DD format).
Response
{
  "type": "object",
  "fields": {
    "total": "integer total count of matching acquisitions",
    "acquisitions": "array of acquisition records with bank_name, date_of_acquisition, bank_id, city_name, state_name, surviving_bank_name, changecode_desc"
  },
  "sample": {
    "data": {
      "total": 3,
      "acquisitions": [
        {
          "bank_id": 33318,
          "bank_name": "FIA Card Services, National Association",
          "city_name": "Wilmington",
          "state_name": "DE",
          "changecode_desc": "Merger -Without Assistance",
          "date_of_acquisition": "2014-10-01T00:00:00",
          "surviving_bank_name": "Bank of America, National Association"
        }
      ]
    },
    "status": "success"
  }
}

About the FDIC API

Institution Search and Details

The search_institutions endpoint accepts either a full-text query string or a filters parameter using FDIC field syntax (e.g., STNAME:California, STALP:CA, CERT:3510). It returns paginated arrays of institution records including NAME, CERT, CITY, ASSET, DEP, and WEBADDR. For a single known institution, get_institution_details takes a CERT number and returns one complete record with address, regulatory classification, financial indicators, and web address. Note that full-text search via the query param can return sparse results for some inputs; field-level filters are more reliable.

Financial and Historical Data

get_institution_financials returns quarterly financial snapshots per institution — fields include ASSET, DEP, NETINC, ROA, ROE, REPDTE, and NUMEMP — sorted by report date descending. get_historical_summary aggregates data at the state level by year, splitting results between commercial banks (CB) and savings institutions (SI), with fields like BANKS, OFFICES, and NETINC. get_institution_history and get_history_by_changecode expose structure change events: mergers, branch closings, name changes, and other regulatory events identified by CHANGECODE and described in CHANGECODE_DESC.

Locations, Deposits, and Failures

get_institution_locations returns all branch and office records for a given CERT, including ADDRESS, LATITUDE, LONGITUDE, OFFNAME, and SERVTYPE_DESC. Results are paginated at up to 100 per request. get_summary_of_deposits provides annual branch-level deposit data (DEPSUM, DEPSUMBR, NAMEBR, CITYBR) filterable by CERT, YEAR, or state abbreviation. get_bank_failures covers every FDIC-recorded bank failure from 1934 onward, with filters for state (PSTALP) or year (FAILYR), returning FAILDATE, SAVR, COST, and RESTYPE per record.

Acquisitions and Demographics

get_bank_acquisitions takes an acquiring bank's CERT and an optional date range, returning a list of acquired institutions with bank_name, date_of_acquisition, city_name, and state_name. get_demographics returns quarterly office counts, CBSA classifications, and geographic indicators (METRO, OFFTOT, OFFDMULT) linked to institution locations, filterable by CERT or metro area name.

Reliability & maintenanceVerified

The FDIC API is a managed, monitored endpoint for banks.data.fdic.gov — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when banks.data.fdic.gov changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official banks.data.fdic.gov API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
6d ago
Latest check
11/11 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Map every branch location for a bank using LATITUDE and LONGITUDE fields from get_institution_locations
  • Track quarterly asset and net income trends for a specific institution using get_institution_financials
  • Build a U.S. bank failure timeline from 1934 to present using FAILDATE and COST fields from get_bank_failures
  • Identify all institutions acquired by a holding company using get_bank_acquisitions with the acquirer's CERT
  • Compare state-level aggregate bank assets and deposits across years using get_historical_summary
  • Audit merger and name-change history for a regulated institution via get_history_by_changecode with code 223 or 520
  • Analyze branch-level deposit concentration by filtering get_summary_of_deposits by CERT and YEAR
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does the FDIC provide an official developer API for this data?+
Yes. The FDIC operates the BankFind Suite API at https://banks.data.fdic.gov/docs/, a public REST API with no authentication required. This Parse API surfaces that same dataset in a consistent, endpoint-organized format with structured response shapes.
How does filtering work in endpoints like `get_bank_failures` and `search_institutions`?+
Both accept a filters parameter using FDIC field syntax: field name, colon, value (e.g., PSTALP:CA or FAILYR:2023). Multiple conditions are joined with AND (e.g., YEAR:2020 AND STNAME:California). Field names are case-sensitive FDIC column names. For institution search, CERT, NAME, STALP, and STNAME are the most commonly used filter fields.
How far back does the bank failure data go, and are all resolution types included?+
The get_bank_failures endpoint covers failures recorded by the FDIC from 1934 to the present. Each record includes a RESTYPE field describing the resolution method (e.g., deposit payoff, purchase and assumption) and a COST field for estimated loss to the deposit insurance fund.
Does the API return real-time or intraday financial data for institutions?+
No. Financial data from get_institution_financials is quarterly — each record corresponds to one reporting period identified by REPDTE. Intraday prices, live balance sheet figures, and stock data are not part of the FDIC BankFind dataset. You can fork this API on Parse and revise it to add endpoints pulling from other financial data sources if real-time figures are needed.
Is data available for credit unions or non-FDIC-insured institutions?+
The API covers only FDIC-insured depository institutions — commercial banks and savings institutions. Credit unions, which are regulated by the NCUA, are not included. You can fork this API on Parse and revise it to add endpoints targeting NCUA data if credit union coverage is required.
Page content last updated . Spec covers 11 endpoints from banks.data.fdic.gov.
Related APIs in FinanceSee all →
bank-codes.com API
Find SWIFT/BIC codes for international banks and Indian IFSC/MICR codes by searching across countries, banks, and branches. Quickly locate the exact bank codes you need for wire transfers and financial transactions worldwide.
theswiftcodes.com API
Validate and look up SWIFT codes, IBANs, and US routing numbers across banks and countries worldwide. Search for banking details by country or institution, and verify the accuracy of international payment identifiers in real-time.
theclearinghouse.org API
Access data from The Clearing House, including owner banks, RTP participating institutions, CHIPS network participant lookups, RTP network statistics, leadership team information, and the latest news and press releases.
data.rbi.org.in API
Access India's official monetary policy data including real-time money market operations, historical rates by date or month, and RBI reference rates. Retrieve the latest financial data releases directly from the Reserve Bank of India's official sources to monitor interest rates, liquidity operations, and market benchmarks.
feedingamerica.org API
Find nearby food banks by ZIP code or state, view detailed organizational profiles and leadership information, and access hunger statistics and news about food insecurity across the nation. Discover ways to take action and support local food banks through giving options and impact metrics.
fred.stlouisfed.org API
Access data from fred.stlouisfed.org.
insolvencydirect.bis.gov.uk API
Search and retrieve detailed information about UK individual insolvency records, including bankruptcies, Individual Voluntary Arrangements (IVAs), Debt Relief Orders (DROs), and bankruptcy restrictions for individuals and sole traders in England and Wales. Access comprehensive insolvency data to verify financial history and legal status of individuals.
content.naic.org API
Search and access comprehensive insurance regulatory information from state departments, including news articles, glossary definitions, committee details, and company data. Find contact information for state insurance regulators, look up insurance industry terms, and research specific insurance companies all in one place.