NCUA Call Report Scraper avatar

NCUA Call Report Scraper

Pricing

from $3.00 / 1,000 results

Go to Apify Store
NCUA Call Report Scraper

NCUA Call Report Scraper

Search NCUA-insured U.S. credit unions by name, state, city, or charter number. Get assets, shares/deposits, loans, net worth, membership, and state-level financial summaries from NCUA's official quarterly 5300 Call Report data.

Pricing

from $3.00 / 1,000 results

Rating

0.0

(0)

Developer

Crawler Bros

Crawler Bros

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

3 days ago

Last modified

Share

Search federally-insured U.S. credit unions and extract their financial data — assets, shares/deposits, loans, net worth, membership, and delinquency figures — straight from the National Credit Union Administration (NCUA)'s own quarterly 5300 Call Report data. Free, public, and requires no login, API key, or paid proxy.


Data Source

All data comes directly from NCUA's official Call Report Quarterly Data files (ncua.gov/analysis/credit-union-corporate-call-report-data/quarterly-data) — the same comma-delimited ZIP files credit union analysts, examiners, and researchers have used for decades. Each quarterly file contains every federally-insured credit union's directory information (FOICU) joined with its financial statement (FS220/FS220A) as submitted and validated by NCUA.

No scraping of rendered pages, no anti-bot workarounds — this is a static government open-data file, downloaded and parsed fresh on every run.

Not the same as FDIC Bank Data Scraper

This actor covers credit unions, which are member-owned, not-for-profit financial cooperatives regulated and insured by the NCUA (National Credit Union Administration) through the National Credit Union Share Insurance Fund (NCUSIF). The separate FDIC Bank Data Scraper actor covers commercial banks and savings institutions, a distinct institution type regulated and insured by the FDIC (Federal Deposit Insurance Corporation). The two regulators, insurance funds, and institution universes do not overlap — a credit union will never appear in FDIC data, and an FDIC-insured bank will never appear in NCUA data.


What this actor does

  • Search credit unions — filter by name (partial match), state, city, asset-size range, NCUA's own peer-group (asset-size band) classification, examination region, charter type (federal vs. state-chartered), or Low-Income Credit Union (LICU) designation
  • Full financials by charter number — assets, shares & deposits, loans, delinquency, net worth, net worth ratio, net income, membership
  • State-level aggregate summaries — total assets, shares, loans, net worth, and membership rolled up per state
  • Historical quarters — select any quarterly reporting cycle back to 2016 Q1
  • No login, no API key, no proxy — pure public government data

Input Parameters

ParameterTypeDescription
modeSelectsearchCreditUnions, getCreditUnionDetails, or getStateSummary
periodSelectQuarterly reporting cycle, e.g. 2026-03 for Q1 2026 (default: most recent available)
creditUnionNameTextPartial, case-insensitive name search (searchCreditUnions mode)
stateSelect2-letter U.S. state/territory code. Leave blank for all
cityTextExact city match (case-insensitive)
charterNumbersString listNCUA charter numbers (required for getCreditUnionDetails)
minAssets / maxAssetsIntegerTotal-asset range filter, in whole dollars
peerGroupSelectNCUA's own asset-size peer group (1-6)
regionSelectNCUA examination region: Eastern, Southern, Western, or Office of National Examinations & Supervision
charterTypeSelectFederal Credit Union (FCU) or Federally-Insured State-Chartered Credit Union (FISCU)
lowIncomeDesignatedSelectFilter by NCUA's Low-Income Credit Union (LICU) designation: all, designated only, or not designated
sortBySelectASSETS, NAME, CHARTER, or MEMBERS
maxItemsIntegerMaximum records to return (1-5000, default 50)

Finding a Credit Union's Charter Number

Run the actor in searchCreditUnions mode first — every result includes its charterNumber. Then pass that number in charterNumbers for getCreditUnionDetails mode.


Output Fields

searchCreditUnions / getCreditUnionDetails modes

FieldDescription
charterNumberNCUA charter number (unique credit union identifier)
creditUnionNameLegal name of the credit union
cityHeadquarters city
state2-letter state/territory code
stateNameFull state/territory name
charterStateState where the credit union was originally chartered
zipCodeHeadquarters ZIP code
streetAddressHeadquarters/main office street address
countyHeadquarters county
mainOfficePhoneMain office phone number
branchCountNumber of branch/service locations reported
yearCharteredYear the credit union was organized
peerGroupNCUA asset-size peer group (1-6)
peerGroupLabelHuman-readable peer group description
regionNCUA examination region code (1, 2, 3, or 8)
regionNameHuman-readable region name (Eastern, Southern, Western, or Office of National Examinations & Supervision)
charterTypeCharter type code (1 = federal, 2 = federally-insured state-chartered)
charterTypeLabelHuman-readable charter type description
isMinorityDepositoryInstitutionWhether NCUA designates it a Minority Depository Institution
isLowIncomeDesignatedWhether NCUA designates it a Low-Income Credit Union (LICU)
rssdIdFederal Reserve RSSD ID — a cross-regulator unique identifier for the institution
insuredDateDate NCUSIF insurance began
issueDateDate the charter was issued
totalAssetsTotal assets ($)
totalSharesAndDepositsTotal member shares and deposits ($)
loanCountTotal number of outstanding loans & leases
totalLoansTotal amount of outstanding loans & leases ($)
totalDelinquentLoansTotal delinquent loans & leases, 2+ months ($)
currentMembersNumber of current members
potentialMembersNumber of potential members (field of membership)
netIncomeNet income for the period ($)
totalNetWorthTotal net worth / retained earnings ($)
netWorthRatioPercentNet worth as a percentage of total assets
reportPeriodReporting quarter used (e.g. 2026-03)
dataSourceUrlThe exact NCUA ZIP file this record was extracted from
scrapedAtISO 8601 timestamp of when the record was scraped

getStateSummary mode

FieldDescription
state2-letter state/territory code
stateNameFull state/territory name
creditUnionCountNumber of credit unions headquartered in the state
totalAssetsCombined total assets across all credit unions in the state ($)
totalSharesAndDepositsCombined total shares & deposits ($)
totalLoansCombined total loans ($)
totalNetWorthCombined total net worth ($)
totalMembersCombined current membership
reportPeriodReporting quarter used
dataSourceUrlSource ZIP file URL
scrapedAtISO 8601 timestamp

Example: find the 20 largest U.S. credit unions by assets

{ "mode": "searchCreditUnions", "sortBy": "ASSETS", "maxItems": 20 }

Example: search for credit unions with "Teachers" in the name

{ "mode": "searchCreditUnions", "creditUnionName": "Teachers", "maxItems": 100 }

Example: get full financials for a specific credit union by charter number

{ "mode": "getCreditUnionDetails", "charterNumbers": ["8305"] }

Example: find small community credit unions in Ohio

{ "mode": "searchCreditUnions", "state": "OH", "peerGroup": "2", "maxItems": 50 }

Example: get aggregate credit union stats for every state

{ "mode": "getStateSummary", "maxItems": 60 }

Example: find only federally-chartered credit unions in NCUA's Western Region

{ "mode": "searchCreditUnions", "region": "3", "charterType": "1", "maxItems": 100 }

Example: find Low-Income Designated credit unions in Texas

{ "mode": "searchCreditUnions", "state": "TX", "lowIncomeDesignated": "true", "maxItems": 100 }

Use cases

  • Financial research & analysts — screen credit unions by asset size, peer group, or region for comparative analysis
  • Fintech & lending partnerships — identify well-capitalized credit unions by net worth ratio for partnership outreach
  • Regulatory & compliance monitoring — track a specific credit union's quarterly financials over time by charter number
  • Market sizing — aggregate state-level credit union assets, shares, and membership for a regional market study
  • Academic & policy research — bulk-export historical Call Report data back to 2016 for longitudinal studies

FAQs

Is an API key or login required? No. NCUA's Call Report Quarterly Data files are free, public government open data. No registration is required.

How current is the data? NCUA publishes new Call Report data roughly 6-8 weeks after each calendar quarter ends. Select the desired quarter with the period input (defaults to the most recent verified-available quarter).

What is a charter number? The charter number is NCUA's unique, permanent identifier for each federally-insured credit union. It stays the same even if the credit union changes its name or merges.

Why are some financial fields missing for a given credit union? Only fields the credit union actually reported for that quarter are included — no placeholder or zero values are fabricated for unreported figures.

What does netWorthRatioPercent mean? Net worth (retained earnings plus reserves) divided by total assets, expressed as a percentage. NCUA classifies credit unions as "well capitalized" at 7% and above.

What is the difference between this actor and the FDIC Bank Data Scraper? This actor covers member-owned, not-for-profit credit unions regulated by the NCUA. The FDIC actor covers for-profit commercial banks and savings institutions regulated by the FDIC. They are entirely separate regulators, insurance funds, and institution universes — there is no overlap.

Can I look up historical data? Yes — the period input covers every quarter back to 2016 Q1.

What is an NCUA "region"? NCUA supervises credit unions through three geographic examination regions (Eastern, Southern, Western) plus the Office of National Examinations & Supervision, which directly examines the largest and most complex credit unions regardless of location.

What is the difference between a Federal Credit Union (FCU) and a Federally-Insured State-Chartered Credit Union (FISCU)? Both are NCUA-insured. An FCU is chartered and regulated directly by the NCUA. A FISCU is chartered and primarily regulated by a state regulator but carries NCUA share insurance. Use the charterType filter to isolate either group.

What is a Low-Income Credit Union (LICU) designation? NCUA designates a credit union as "low-income" when a majority of its membership meets certain income thresholds. LICU status grants access to secondary capital and exemption from the statutory member business lending cap. Use the lowIncomeDesignated filter to isolate either group.

What is an RSSD ID? The RSSD ID is a unique identifier assigned by the Federal Reserve, used across bank and credit union regulators (NCUA, FDIC, Federal Reserve) to cross-reference the same institution in different regulatory datasets.


Rate Limits

NCUA's Call Report data files are static, publicly hosted downloads with no rate limiting. This actor downloads the requested quarter's file once per run. No proxy is required.