Python wrapper for the FDIC BankFind Suite API, providing access to FDIC banking data including institution details, financial reports, history, failures, and summary statistics. Simplifies querying the public FDIC REST API with Pythonic interfaces.
Install & Compatibility
Where this runs
tested against v? · pip install
no network on importno background threads
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
from requests.api import InstitutionsQuery
Query FDIC for banks in California. No authentication required.
import requests
# No API key required - FDIC API is public
resp = requests.get(
"https://api.fdic.gov/banks/institutions",
params={"filters": "STNAME:California", "limit": 5, "fields": "NAME,CITY,STNAME,ASSET"}
)
resp.raise_for_status()
data = resp.json()
for inst in data["data"]:
print(f"{inst['data']['NAME']} - {inst['data']['CITY']}, {inst['data']['STNAME']}")
Upgrade
Version history
Breaking-change detection hasn't run for this library yet.
Audit
Security & dependencies
CVE tracking and dependency tree are planned for a later release.
Resources
No resource links recorded.