Time Series Mortgage Denials By Race
Dataset contains home mortgage applications denied in LA City, LA County, and California, disaggregated by race. 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/time-series-mortgage-denials-by-race-argd-k3xu\".\"time_series_mortgage_denials_by_race\"
LIMIT 100
"}
EOF
See the Splitgraph documentation
for more information.