Census 2020 Tract Populations
This data set contains Census 2020 population data for the State of Tennessee broken down by Census Tract. To read more about the 2020 Census data, you can go to the link below:
https://www.census.gov/programs-surveys/decennial-census/about/rdo/summary-files.html
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 \"internal-chattadata/census-2020-tract-populations-pikg-56jb\".\"census_2020_tract_populations\"
LIMIT 100
"}
EOF
See the Splitgraph documentation
for more information.