Percent Of Denied Mortgage Loan Applications By Race And Loan Purpose 2021
Dataset contains the percent of denied mortgages based on the purpose of the application and disaggregated by race. Each cell represents the denial rate within that column's race/ethnicity category's total applications. Data pulled from the Consumer Financial Protection Bureau, collected by the Home Mortgage Disclosure Act, which requires many financial institutions to maintain, report, and publicly disclose information about mortgages.
Querying over HTTP
Splitgraph serves as an HTTP API that lets you run SQL queries directly on
this data to power Web applications. For example:
curl https://data.splitgraph.com/sql/query/ddn \
-H "Content-Type: application/json" \
-d@-<<EOF
{"sql": "
SELECT *
FROM \"lacity/percent-of-denied-mortgage-loan-applications-by-fdtv-2wce\".\"percent_of_denied_mortgage_loan_applications_by\"
LIMIT 100
"}
EOF
See the Splitgraph documentation
for more information.