Consumer Financial Protection Bureau (CFPB)

CFPB

Overview

The Consumer Financial Protection Bureau (CFPB) is a US government agency responsible for federal consumer financial laws and ensuring that markets for consumer financial products are fair, transparent, and competitive. The CFPB publishes reports and statistics on the consumer financial marketplace.

Example topics covered:

  • Consumer complaints by product category

  • Company response timeliness to consumer complaints

  • Financial institutions providing mortgage and demographics of mortgage applicants

  • Mortgage originations, terms, and performance

  • Rates of delayed payments, foreclosures, bankruptcies, and forbearance of mortgages

Key Attributes

Geographic Coverage

United States

Entity Level

Consumer Complaints Database: Company, Zip Code, State Home Mortgage Disclosure Act: Financial Institution, County, State National Mortgage Database: Details on the FHFA source page

Release Frequency

Consumer Complaints Database: Daily Home Mortgage Disclosure Act: Annually, June National Mortgage Database: Details on the FHFA source page

History

Consumer Complaints Database: Complaints: December 1, 2011 Home Mortgage Disclosure Act: 2017 National Mortgage Database: Details on the FHFA source page

As with all Public Domain datasets, Cybersyn aims to release data on Snowflake Marketplace as soon as the underlying source releases new data. We check periodically for changes to the underlying source and, upon detecting a change, propagate the data to Snowflake Marketplace immediately. See our release process for more details.

Description

EAV Model: All Cybersyn products follow the EAV (entity, attributes, value) model with a unified schema. Entities are tangible objects (e.g. geography, company) that Cybersyn provides data on. All timeseries' dates and values that refer to the entity are included in a timeseries table. Descriptors of the timeseries are included in an attributes table. Data is joinable across all Cybersyn products that have a GEO_ID. Refer to Cybersyn Concepts for more details.

Consumer Complaints Database: The Consumer Financial Protection Bureau (CFPB) publishes the Consumer Complaints Database that provides complaint information for companies by product category, receipt, and company response timeliness by consumer's zip code and state. It serves as a valuable tool for understanding consumer challenges in the financial marketplace and for monitoring how financial institutions address these issues. The data is updated daily and dates back to Dec 1, 2011.

Home Mortgage Disclosure Act (HMDA): The Home Mortgage Disclosure Act (HMDA) requires many financial and lending institutions to maintain, report, and publicly disclose loan-level information about mortgages. This data is collected and managed by the Consumer Financial Protection Bureau (CFPB) and the Federal Financial Institutions Examination Council (FFIEC). HMDA data is the most comprehensive source of publicly available information on the US mortgage market and mortgage lending activity. Mandated by the HMDA, the dataset includes various details on mortgage applications, originations, denials, purchases and sales of loans, and other mortgage-related activities. In 2018, the CFPB changed the reporting standards for HMDA disclosures. As a result, some fields such as the financial institution and loan term are unavailable for records before 2018.

National Mortgage Database: The National Mortgage Database is managed jointly by the FHFA and the CFPB. Learn more here.

Tables & Sources

TableSource(s)

FINANCIAL_CFPB_COMPLAINT

HOME_MORTGAGE_DISCLOSURE_ATTRIBUTES

FHFA_MORTGAGE_PERFORMANCE_ATTRIBUTES FHFA_MORTGAGE_PERFORMANCE_TIMESERIES

Cybersyn Products

Tables above are available in the following Cybersyn data products:

Examples & Sample Queries

Credit card company complaints

Count credit card complaints by month by company since 2012.

SELECT company,
       DATE_TRUNC('month', date_received) AS month,
       COUNT(1)                           AS credit_card_complaint
FROM cybersyn.financial_cfpb_complaint
WHERE product ILIKE '%card%'
  AND date_received >= '2012-01-01'
GROUP BY company, month;

Check mortgage approval rates by financial institution

Find financial institution with >10k applications that had the highest approval rates in 2021

WITH approved_apps AS (
    SELECT financial_institution_name, COUNT(*) AS approved_count
    FROM cybersyn.home_mortgage_disclosure_attributes
    WHERE action_taken IN ('Application approved but not accepted',
                           'Loan originated',
                           'Preapproval request approved but not accepted')
      AND year = '2021'
    GROUP BY financial_institution_name
), all_apps AS (
    SELECT financial_institution_name, COUNT(*) AS total_count
    FROM cybersyn.home_mortgage_disclosure_attributes
    WHERE year = '2021'
    GROUP BY financial_institution_name
)
SELECT all_apps.financial_institution_name,
       approved_count,
       total_count,
       approved_count / total_count AS pct_approved
FROM all_apps
JOIN approved_apps ON (all_apps.financial_institution_name = approved_apps.financial_institution_name)
WHERE total_count > 1E4
ORDER BY pct_approved DESC;

Disclaimers

The data in this product is sourced from Consumer Financial Protection Bureau (CFPB). Cybersyn is not endorsed by or affiliated with any of these providers. Contact support@cybersyn.com for questions.

Last updated

Copyright © 2024 Cybersyn