Week 5A
Getting Data Part 1: Working with APIs

Oct 4, 2021

Week #5 Agenda

  • Introduction to APIs
  • Pulling census data and shape files using Python
    • Example: Lead poisoning in Philadelphia
  • Using the Twitter API
    • Plotting geocoded tweets
    • Word frequencies
    • Sentiment analysis
In [1]:
import geopandas as gpd
import pandas as pd
import numpy as np
from shapely.geometry import Point

from matplotlib import pyplot as plt
import seaborn as sns

import hvplot.pandas
import holoviews as hv
In [3]:
# UNCOMMENT TO SEE ALL ROWS/COLUMNS IN DATAFRAMES
pd.options.display.max_columns = 999
pd.options.display.max_rows = 999 
pd.options.display.max_colwidth = 200

Introduction to APIs

Or, how to pull data from the web using Python

Example APIs

Note: when accessing data via API, many services will require you to register an API key to prevent you from overloading the service with requests

Part 1: Reading an automated data feed

USGS real-time earthquake feeds

This is an API for near-real-time data about earthquakes, and data is provided in GeoJSON format over the web.

The API has a separate endpoint for each version of the data that users might want. No authentication is required.

GeoPandas can read GeoJSON from the web directly

Simply pass the URL to the gpd.read_file() function:

In [4]:
# Download data on magnitude 2.5+ quakes from the past week
endpoint_url = "http://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/2.5_week.geojson"
df = gpd.read_file(endpoint_url)
In [5]:
df.head() 
Out[5]:
id mag place time updated tz url detail felt cdi mmi alert status tsunami sig net code ids sources types nst dmin rms gap magType type title geometry
0 nc73636810 3.66 13km SSE of Bodie, CA 1633652029330 1633653617567 None https://earthquake.usgs.gov/earthquakes/eventpage/nc73636810 https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/nc73636810.geojson 6.0 3.2 3.779 None reviewed 0 208 nc 73636810 ,nc73636810,nn00825152,us6000fsux, ,nc,nn,us, ,dyfi,focal-mechanism,nearby-cities,origin,phase-data,scitech-link,shakemap, 83.0 NaN 0.22 80.0 ml earthquake M 3.7 - 13km SSE of Bodie, CA POINT Z (-118.96117 38.10083 7.89000)
1 ak021cvfn4ap 2.60 51 km NNE of Kobuk, Alaska 1633644683992 1633646189040 None https://earthquake.usgs.gov/earthquakes/eventpage/ak021cvfn4ap https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak021cvfn4ap.geojson NaN NaN NaN None automatic 0 104 ak 021cvfn4ap ,us6000fsuh,ak021cvfn4ap, ,us,ak, ,origin,phase-data, NaN NaN 0.64 NaN ml earthquake M 2.6 - 51 km NNE of Kobuk, Alaska POINT Z (-156.31620 67.31640 1.10000)
2 us6000fsua 4.40 166 km S of La Libertad, El Salvador 1633643119644 1633644179040 None https://earthquake.usgs.gov/earthquakes/eventpage/us6000fsua https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000fsua.geojson NaN NaN NaN None reviewed 0 298 us 6000fsua ,us6000fsua, ,us, ,origin,phase-data, NaN 1.650 0.70 209.0 mb earthquake M 4.4 - 166 km S of La Libertad, El Salvador POINT Z (-89.53640 11.99580 10.00000)
3 us6000fssl 6.10 Macquarie Island region 1633637581819 1633648212759 None https://earthquake.usgs.gov/earthquakes/eventpage/us6000fssl https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/us6000fssl.geojson 1.0 1.0 0.000 green reviewed 0 573 us 6000fssl ,us6000fssl, ,us, ,dyfi,losspager,moment-tensor,origin,phase-data,shakemap, NaN 4.306 0.76 105.0 mww earthquake M 6.1 - Macquarie Island region POINT Z (158.44910 -58.78440 10.00000)
4 ak021cveg7ut 3.00 197 km ESE of Chiniak, Alaska 1633637459530 1633638717066 None https://earthquake.usgs.gov/earthquakes/eventpage/ak021cveg7ut https://earthquake.usgs.gov/earthquakes/feed/v1.0/detail/ak021cveg7ut.geojson NaN NaN NaN None automatic 0 138 ak 021cveg7ut ,ak021cveg7ut, ,ak, ,origin, NaN NaN 0.53 NaN ml earthquake M 3.0 - 197 km ESE of Chiniak, Alaska POINT Z (-149.35690 56.82590 28.70000)

Let's plot them on a map:

In [6]:
fig, ax = plt.subplots(figsize=(10, 10))

# plot the country outline
world = gpd.read_file(gpd.datasets.get_path("naturalearth_lowres"))
world.to_crs(epsg=3857).plot(ax=ax, facecolor="none", edgecolor="black")

# plot the earthquakes
df.to_crs(epsg=3857).plot(ax=ax, color="crimson")

ax.set_axis_off()

Part 2: GeoServices

A GeoService is a standardized format for returning GeoJSON files over the web.

Documentation http://geoservices.github.io/

OpenDataPhilly provides GeoService API endpoints for the geometry hosted on its platform

In [7]:
# base URL
url = "https://services.arcgis.com/fLeGjb7u4uXqeF9q/arcgis/rest/services/Zipcodes_Poly/FeatureServer/0/"

Small utility package to make querying GeoServices easier: esri2gpd

https://github.com/PhiladelphiaController/esri2gpd

In [8]:
import esri2gpd
In [9]:
zip_codes = esri2gpd.get(url)
In [10]:
zip_codes.head()
Out[10]:
geometry OBJECTID CODE COD Shape__Area Shape__Length
0 POLYGON ((-75.11107 40.04682, -75.11206 40.04739, -75.11237 40.04757, -75.11293 40.04790, -75.11451 40.04882, -75.11507 40.04914, -75.11706 40.05030, -75.11857 40.05115, -75.11954 40.05170, -75.11... 1 19120 20 9.177970e+07 49921.544063
1 POLYGON ((-75.19227 39.99463, -75.19240 39.99468, -75.19241 39.99468, -75.19242 39.99469, -75.19263 39.99478, -75.19380 39.99529, -75.19402 39.99504, -75.19425 39.99479, -75.19449 39.99455, -75.19... 2 19121 21 6.959879e+07 39534.887217
2 POLYGON ((-75.15406 39.98601, -75.15494 39.98613, -75.15494 39.98613, -75.15541 39.98619, -75.15607 39.98627, -75.15628 39.98629, -75.15662 39.98471, -75.15692 39.98323, -75.15726 39.98170, -75.15... 3 19122 22 3.591632e+07 24124.645221
3 POLYGON ((-75.15190 39.97056, -75.15258 39.97058, -75.15258 39.97058, -75.15368 39.97073, -75.15415 39.97079, -75.15464 39.97085, -75.15572 39.97099, -75.15728 39.97120, -75.15861 39.97136, -75.15... 4 19123 23 3.585175e+07 26421.728982
4 POLYGON ((-75.09660 40.04249, -75.09661 40.04250, -75.09783 40.04149, -75.09796 40.04138, -75.09799 40.04136, -75.09848 40.04096, -75.09890 40.04060, -75.09912 40.04041, -75.09934 40.04021, -75.09... 5 19124 24 1.448080e+08 63658.770420
In [11]:
zip_codes.crs
Out[11]:
<Geographic 2D CRS: EPSG:4326>
Name: WGS 84
Axis Info [ellipsoidal]:
- Lat[north]: Geodetic latitude (degree)
- Lon[east]: Geodetic longitude (degree)
Area of Use:
- name: World.
- bounds: (-180.0, -90.0, 180.0, 90.0)
Datum: World Geodetic System 1984
- Ellipsoid: WGS 84
- Prime Meridian: Greenwich

Let's plot it

In [12]:
fig, ax = plt.subplots(figsize=(6, 6))
zip_codes.to_crs(epsg=3857).plot(ax=ax, facecolor="none", edgecolor="black")
ax.set_axis_off()

Another useful example: census tracts

https://www.opendataphilly.org/dataset/census-tracts

Part 3: Downloading Philly data from CARTO

  • Philadelphia hosts the majority of its open data in the cloud using CARTO.
  • They provide an API to download the data
  • You can access the API documentation from OpenDataPhilly

Note: the "API documentation" on OpenDataPhilly will link to the documentation for the CARTO database

For example: shooting victims in Philadelphia

https://www.opendataphilly.org/dataset/shooting-victims

https://phl.carto.com/api/v2/sql?q=SELECT+*,+ST_Y(the_geom)+AS+lat,+ST_X(the_geom)+AS+lng+FROM+shootings&filename=shootings&format=csv&skipfields=cartodb_id

  • First line: the base URL for CARTO
  • Second line: the SQL query

SQL Databases

The CARTO databases can be queried using SQL. This allows you to select specific data from the larger database.

CARTO API documentation: https://carto.com/developers/sql-api/

SQL documentation: https://www.postgresql.org/docs/9.1/sql.html

General Query Syntax

SELECT [field names] FROM [table name] WHERE [query]

Let's try it out in Python

We'll use Python's requests library to query the API endpoint with our desired query.

In [13]:
import requests
In [14]:
# the API end point
API_endpoint = "https://phl.carto.com/api/v2/sql"

# the query
query = "SELECT * FROM shootings" # table name is "shootings"

# desired format of the returned features
output_format = 'geojson'

# fields to skip
skipfields = ["cartodb_id"]
In [15]:
# all of our request parameters
params = dict(q=query, format=output_format, skipfields=skipfields)

params
Out[15]:
{'q': 'SELECT * FROM shootings',
 'format': 'geojson',
 'skipfields': ['cartodb_id']}
In [16]:
# make the request
r = requests.get(API_endpoint, params=params)

r
Out[16]:
<Response [200]>
In [17]:
# Get the returned data in JSON format
# This is a dictionary
features = r.json()
In [18]:
# What are the keys?
list(features.keys())
Out[18]:
['type', 'features']
In [19]:
features['type']
Out[19]:
'FeatureCollection'
In [20]:
# Let's look at the first feature
features['features'][0]
Out[20]:
{'type': 'Feature',
 'geometry': {'type': 'Point', 'coordinates': [-75.148805, 39.94162]},
 'properties': {'objectid': 1338339,
  'year': 2019,
  'dc_key': '201903066339.0',
  'code': '0411',
  'date_': '2019-09-14T00:00:00Z',
  'time': '00:40:00',
  'race': 'B',
  'sex': 'M',
  'age': '28',
  'wound': 'foot',
  'officer_involved': 'N',
  'offender_injured': 'N',
  'offender_deceased': 'N',
  'location': '300 BLOCK South St',
  'latino': 0,
  'point_x': -75.14880481,
  'point_y': 39.94162015,
  'dist': '3',
  'inside': 0,
  'outside': 1,
  'fatal': 0}}

Use the GeoDataFrame.from_features() function to create a GeoDataFrame

In [28]:
shootings = gpd.GeoDataFrame.from_features(features, crs="EPSG:4326")
In [29]:
shootings.head()
Out[29]:
geometry objectid year dc_key code date_ time race sex age wound officer_involved offender_injured offender_deceased location latino point_x point_y dist inside outside fatal
0 POINT (-75.14880 39.94162) 1338339 2019 201903066339.0 0411 2019-09-14T00:00:00Z 00:40:00 B M 28 foot N N N 300 BLOCK South St 0.0 -75.148805 39.941620 3 0.0 1.0 0.0
1 POINT (-75.16174 39.94331) 1338340 2019 201903068722.0 0411 2019-09-22T00:00:00Z 04:15:00 B M 18 buttocks N N N 500 BLOCK S 12TH ST 0.0 -75.161742 39.943305 3 0.0 1.0 0.0
2 POINT (-75.15283 39.93274) 1338341 2019 201903069547.0 0411 2019-09-24T00:00:00Z 22:50:00 B M 22 multi N N N 1200 BLOCK S 5th St 0.0 -75.152828 39.932737 3 0.0 1.0 0.0
3 POINT (-75.16130 39.92138) 1338342 2019 201903069833.0 0300 2019-09-25T00:00:00Z 23:01:00 A M 22 head N N N 2200 BLOCK S Darien St 0.0 -75.161296 39.921382 3 1.0 0.0 0.0
4 POINT (-75.15822 39.92286) 1338343 2019 201903070133.0 0411 2019-09-26T00:00:00Z 11:01:00 B M 43 leg N N N 2100 BLOCK S 7th St 0.0 -75.158223 39.922857 3 0.0 1.0 0.0

At-Home Exercise: Visualizing shootings data

Step 1: Prep the data

  • Drop rows where the geometry is NaN
  • Convert to a better CRS (e.g., 3857)
  • Trim to those only within city limits (some shootings have wrong coordinates, outside Philadelphia!)
In [30]:
# Load the city limits from open data philly
city_limits = gpd.read_file(
    "https://opendata.arcgis.com/datasets/405ec3da942d4e20869d4e1449a2be48_0.geojson"
).to_crs(epsg=3857)
In [31]:
# make sure we remove missing geometries
shootings = shootings.dropna(subset=['geometry'])

# convert to a better CRS
shootings = shootings.to_crs(epsg=3857)
In [32]:
# Remove any shootings that are outside the city limits
shootings = gpd.sjoin(shootings, city_limits, op='within', how='inner')

Step 2: Plot the points

A quick plot with geopandas to show the shootings as points

In [33]:
fig, ax = plt.subplots(figsize=(6, 6))

# ZIP codes
zip_codes.to_crs(epsg=3857).plot(ax=ax, facecolor="none", edgecolor="black")

# Shootings
shootings.plot(ax=ax, color="crimson")
ax.set_axis_off()

Step 3: Make a (more useful) hex bin map

In [34]:
# initialize the axes
fig, ax = plt.subplots(figsize=(10, 10), facecolor=plt.get_cmap('viridis')(0))

# convert to Web Mercator and plot the hexbins 
x = shootings.geometry.x
y = shootings.geometry.y
ax.hexbin(x, y, gridsize=40, mincnt=1, cmap='viridis')

# overlay the ZIP codes
zip_codes.to_crs(epsg=3857).plot(ax=ax, 
                                 facecolor='none', 
                                 linewidth=0.5,
                                 edgecolor='white')

ax.set_axis_off()

Count the total number of rows in a table

The COUNT function can be applied to count all rows.

In [36]:
query = "SELECT COUNT(*) FROM shootings"
In [37]:
params = dict(q=query)
r = requests.get(API_endpoint, params=params)
In [38]:
r.json()
Out[38]:
{'rows': [{'count': 10777}],
 'time': 0.004,
 'fields': {'count': {'type': 'number', 'pgtype': 'int8'}},
 'total_rows': 1}

Important: always good to check how many rows you might be downloading before hand.

Select all columns, limiting the total number returned

The LIMIT function limits the number of returned rows. It is very useful for taking a quick look at the format of a database.

In [39]:
# select the first 5
query = "SELECT * FROM shootings LIMIT 1"
In [40]:
params = dict(q=query, format="geojson")
r = requests.get(API_endpoint, params=params)
In [41]:
df = gpd.GeoDataFrame.from_features(r.json(), crs="EPSG:4326")
df
Out[41]:
geometry cartodb_id objectid year dc_key code date_ time race sex age wound officer_involved offender_injured offender_deceased location latino point_x point_y dist inside outside fatal
0 POINT (-75.14880 39.94162) 1 1338339 2019 201903066339.0 0411 2019-09-14T00:00:00Z 00:40:00 B M 28 foot N N N 300 BLOCK South St 0 -75.148805 39.94162 3 0 1 0

Select by specific column values

In [42]:
shootings.head()
Out[42]:
geometry objectid year dc_key code date_ time race sex age wound officer_involved offender_injured offender_deceased location latino point_x point_y dist inside outside fatal index_right OBJECTID Shape__Area Shape__Length
0 POINT (-8365526.706 4857462.280) 1338339 2019 201903066339.0 0411 2019-09-14T00:00:00Z 00:40:00 B M 28 foot N N N 300 BLOCK South St 0.0 -75.148805 39.941620 3 0.0 1.0 0.0 0 1 3.970706e+09 394751.12047
1 POINT (-8366966.847 4857706.934) 1338340 2019 201903068722.0 0411 2019-09-22T00:00:00Z 04:15:00 B M 18 buttocks N N N 500 BLOCK S 12TH ST 0.0 -75.161742 39.943305 3 0.0 1.0 0.0 0 1 3.970706e+09 394751.12047
2 POINT (-8365974.545 4856172.613) 1338341 2019 201903069547.0 0411 2019-09-24T00:00:00Z 22:50:00 B M 22 multi N N N 1200 BLOCK S 5th St 0.0 -75.152828 39.932737 3 0.0 1.0 0.0 0 1 3.970706e+09 394751.12047
3 POINT (-8366917.198 4854524.294) 1338342 2019 201903069833.0 0300 2019-09-25T00:00:00Z 23:01:00 A M 22 head N N N 2200 BLOCK S Darien St 0.0 -75.161296 39.921382 3 1.0 0.0 0.0 0 1 3.970706e+09 394751.12047
4 POINT (-8366575.113 4854738.393) 1338343 2019 201903070133.0 0411 2019-09-26T00:00:00Z 11:01:00 B M 43 leg N N N 2100 BLOCK S 7th St 0.0 -75.158223 39.922857 3 0.0 1.0 0.0 0 1 3.970706e+09 394751.12047

Select nonfatal shootings only

In [43]:
query = "SELECT * FROM shootings WHERE fatal = 0" 
In [44]:
# Make the request
params = dict(q=query, format="geojson")
r = requests.get(API_endpoint, params=params)

# Make the GeoDataFrame
fatal = gpd.GeoDataFrame.from_features(r.json(), crs="EPSG:4326")
print("number of nonfatal shootings = ", len(fatal))
number of nonfatal shootings =  8580

Select shootings in 2021

In [45]:
query = "SELECT * FROM shootings WHERE date_ > '12/31/20'"
In [46]:
# Make the request
params = dict(q=query, format="geojson")
r = requests.get(API_endpoint, params=params)

# Make the GeoDataFrame
this_year = gpd.GeoDataFrame.from_features(r.json(), crs="EPSG:4326")
print("number of shootings this year = ", len(this_year))
number of shootings this year =  1815

The easier way: carto2gpd

  • A small utility library to simplify the querying of CARTO APIs.
  • The get() function will query the database
  • The get_size() function will use COUNT() to get the total number of rows

https://github.com/PhiladelphiaController/carto2gpd

In [47]:
import carto2gpd
In [48]:
where = "date_ > '1/1/21' and fatal = 0"
df = carto2gpd.get(API_endpoint, 'shootings', where=where)
In [49]:
df.head()
Out[49]:
geometry cartodb_id objectid year dc_key code date_ time race sex age wound officer_involved offender_injured offender_deceased location latino point_x point_y dist inside outside fatal
0 POINT (-75.19390 39.92143) 365 1341975 2021 202101001269.0 411 2021-01-23T00:00:00Z 12:58:00 B M 23 Abdomen N N N 2500 BLOCK S 28TH ST 0 -75.193903 39.921432 1 0 1 0
1 POINT (-75.18311 39.92605) 366 1341976 2021 202101002070.0 411 2021-02-05T00:00:00Z 23:59:00 B M 36 Multiple N N N 2200 BLOCK SNYDER AVE 0 -75.183108 39.926050 1 0 1 0
2 POINT (-75.18370 39.92973) 368 1341978 2021 202101002864.0 411 2021-02-21T00:00:00Z 00:52:00 B M 30 Leg N N N 1800 BLOCK S 23RD ST 0 -75.183699 39.929734 1 0 1 0
3 POINT (-75.17987 39.92576) 369 1341979 2021 202101003591.0 411 2021-03-04T00:00:00Z 10:25:00 B M 28 Leg N N N 2000 BLOCK SNYDER AVE 0 -75.179871 39.925759 1 0 1 0
4 POINT (-75.17232 39.92084) 370 1341980 2021 202101004328.0 300 2021-03-14T00:00:00Z 22:03:00 W M 27 Leg N N N 1500 BLOCK RITNER ST 0 -75.172322 39.920842 1 0 1 0
In [50]:
# Limit results to the first 5
df = carto2gpd.get(API_endpoint, 'shootings', limit=5)
In [51]:
df
Out[51]:
geometry cartodb_id objectid year dc_key code date_ time race sex age wound officer_involved offender_injured offender_deceased location latino point_x point_y dist inside outside fatal
0 POINT (-75.14880 39.94162) 1 1338339 2019 201903066339.0 0411 2019-09-14T00:00:00Z 00:40:00 B M 28 foot N N N 300 BLOCK South St 0 -75.148805 39.941620 3 0 1 0
1 POINT (-75.16174 39.94331) 2 1338340 2019 201903068722.0 0411 2019-09-22T00:00:00Z 04:15:00 B M 18 buttocks N N N 500 BLOCK S 12TH ST 0 -75.161742 39.943305 3 0 1 0
2 POINT (-75.15283 39.93274) 3 1338341 2019 201903069547.0 0411 2019-09-24T00:00:00Z 22:50:00 B M 22 multi N N N 1200 BLOCK S 5th St 0 -75.152828 39.932737 3 0 1 0
3 POINT (-75.16130 39.92138) 4 1338342 2019 201903069833.0 0300 2019-09-25T00:00:00Z 23:01:00 A M 22 head N N N 2200 BLOCK S Darien St 0 -75.161296 39.921382 3 1 0 0
4 POINT (-75.15822 39.92286) 5 1338343 2019 201903070133.0 0411 2019-09-26T00:00:00Z 11:01:00 B M 43 leg N N N 2100 BLOCK S 7th St 0 -75.158223 39.922857 3 0 1 0
In [52]:
size = carto2gpd.get_size(API_endpoint, 'shootings')
print(size)
10777

Step 1:

  • Convert the date column to DateTime objects
  • Add Month and Day of Week columns
In [53]:
# Convert the data column to a datetime object
shootings['date'] = pd.to_datetime(shootings['date_'])
In [54]:
# Add new columns: Month and Day of Week
shootings["Month"] = shootings["date"].dt.month
shootings["Day of Week"] = shootings["date"].dt.dayofweek # Monday is 0, Sunday is 6

Step 2: Calculate number of shootings by month and day of week

Use the familiar Groupby --> size()

In [55]:
count = shootings.groupby(['Month', 'Day of Week']).size()
count = count.reset_index(name='Count')
count.head()
Out[55]:
Month Day of Week Count
0 1 0 87
1 1 1 106
2 1 2 95
3 1 3 96
4 1 4 108

Step 3: Make a heatmap using hvplot

In [56]:
# Remember 0 is Monday and 6 is Sunday
count.hvplot.heatmap(
    x="Day of Week",
    y="Month",
    C="Count",
    cmap="viridis",
    width=400,
    height=500,
    flip_yaxis=True,
)
Out[56]:

Trends: more shootings on the weekends and in the summer months

API Example #1: Census

US Census data is foundational

  • Rich data sets with annual releases
  • Decennial results plus American Community Survey (ACS) results
  • Wide range of topics covered: sex, income, poverty, education, housing

Getting census data (the old way)
American Factfinder

Getting census data (the new way)
census.data.gov

Getting census data: other options

Several 3rd party options with easier interfaces for accessing census data

Data USA

Census Reporter:

NHGIS

Example: poverty data

Returns JSON

Screen%20Shot%202020-09-26%20at%2010.28.06%20PM.png

How to find the right variable names?

The census provides web-based documentation:

Accessing the API is easier from Python

Several packages provide easier Python interfaces to census data based on the census API.

We'll focus on cenpy - "Explore and download data from Census APIs"

Example: the racial "dot" map

Source

Let's make this for Philadelphia in Python!

In [57]:
# First step: import cenpy
import cenpy

The "explorer" module

Functions to help you explore the Census API from Python

Step 1: Identify what dataset we want

  • Today, we'll use the 5-year American Community Survey (latest available year: 2019)
  • Other common datasets:
    • 1-year ACS datasets as well (latest available year: 2019)
    • 10-year decennial survey (latest available year: 2010)
In [58]:
available = cenpy.explorer.available()

available.head()
Out[58]:
c_isMicrodata c_isTimeseries publisher temporal spatial programCode modified keyword contactPoint distribution description bureauCode accessLevel title c_isAvailable c_isCube c_isAggregate c_valuesLink c_groupsLink c_examplesLink c_tagsLink c_variablesLink c_geographyLink c_dataset vintage
ABSCB2017 NaN NaN U.S. Census Bureau unidentified NaN 006:007 2020-04-30 00:00:00.0 () {'fn': 'ASE Staff', 'hasEmail': 'mailto:erd.annual.survey.of.entrepreneurs@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2017/abscb', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The Annual Business Survey (ABS) provides information on selected economic and demographic characteristics for businesses and business owners by sex, ethnicity, race, and veteran status. Further, ... 006:07 public Economic Surveys: Annual Business Survey: Annual Business Survey True NaN True https://api.census.gov/data/2017/abscb/values.json https://api.census.gov/data/2017/abscb/groups.json https://api.census.gov/data/2017/abscb/examples.json https://api.census.gov/data/2017/abscb/tags.json https://api.census.gov/data/2017/abscb/variables.json https://api.census.gov/data/2017/abscb/geography.json (abscb,) 2017.0
ABSCB2018 NaN NaN U.S. Census Bureau unidentified NaN 006:007 2020-10-26 00:00:00.0 () {'fn': 'ASE Staff', 'hasEmail': 'mailto:Erd.annual.survey.of.entrepreneurs@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2018/abscb', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The Annual Business Survey (ABS) provides information on selected economic and demographic characteristics for businesses and business owners by sex, ethnicity, race, and veteran status. Further, ... 006:07 public Economic Surveys: Annual Business Survey: Annual Business Survey True NaN True https://api.census.gov/data/2018/abscb/values.json https://api.census.gov/data/2018/abscb/groups.json https://api.census.gov/data/2018/abscb/examples.json https://api.census.gov/data/2018/abscb/tags.json https://api.census.gov/data/2018/abscb/variables.json https://api.census.gov/data/2018/abscb/geography.json (abscb,) 2018.0
ABSCBO2017 NaN NaN U.S. Census Bureau unidentified NaN 006:007 2020-04-30 00:00:00.0 () {'fn': 'ASE Staff', 'hasEmail': 'mailto:erd.annual.survey.of.entrepreneurs@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2017/abscbo', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The Annual Business Survey (ABS) provides information on selected economic and demographic characteristics for businesses and business owners by sex, ethnicity, race, and veteran status. Further, ... 006:07 public Economic Surveys: Annual Business Survey: Annual Business Survey True NaN True https://api.census.gov/data/2017/abscbo/values.json https://api.census.gov/data/2017/abscbo/groups.json https://api.census.gov/data/2017/abscbo/examples.json https://api.census.gov/data/2017/abscbo/tags.json https://api.census.gov/data/2017/abscbo/variables.json https://api.census.gov/data/2017/abscbo/geography.json (abscbo,) 2017.0
ABSCBO2018 NaN NaN U.S. Census Bureau unidentified NaN 006:007 2020-10-26 00:00:00.0 () {'fn': 'ASE Staff', 'hasEmail': 'mailto:erd.annual.survey.of.entrepreneurs@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2018/abscbo', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The Annual Business Survey (ABS) provides information on selected economic and demographic characteristics for businesses and business owners by sex, ethnicity, race, and veteran status. Further, ... 006:07 public Economic Surveys: Annual Business Survey: Annual Business Survey True NaN True https://api.census.gov/data/2018/abscbo/values.json https://api.census.gov/data/2018/abscbo/groups.json https://api.census.gov/data/2018/abscbo/examples.json https://api.census.gov/data/2018/abscbo/tags.json https://api.census.gov/data/2018/abscbo/variables.json https://api.census.gov/data/2018/abscbo/geography.json (abscbo,) 2018.0
ABSCS2017 NaN NaN U.S. Census Bureau unidentified NaN 006:007 2020-04-30 00:00:00.0 () {'fn': 'ASE Staff', 'hasEmail': 'mailto:erd.annual.survey.of.entrepreneurs@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2017/abscs', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The Annual Business Survey (ABS) provides information on selected economic and demographic characteristics for businesses and business owners by sex, ethnicity, race, and veteran status. Further, ... 006:07 public Annual Business Survey: Company Summary: 2017 True NaN True https://api.census.gov/data/2017/abscs/values.json https://api.census.gov/data/2017/abscs/groups.json https://api.census.gov/data/2017/abscs/examples.json https://api.census.gov/data/2017/abscs/tags.json https://api.census.gov/data/2017/abscs/variables.json https://api.census.gov/data/2017/abscs/geography.json (abscs,) 2017.0

We can use the pandas filter() to search for specific identifiers in the dataframe.

In this case, let's search for the American Community Survey datasets. We'll match index labels using regular expressions.

In particular, we'll search for labels that start with "ACS". In the language of regular expressions, we'll use the "^" to mean "match labels that start with"

For more info on regular expressions, the documentation for the re module is a good place to start.

In [59]:
# Return a dataframe of all datasets that start with "ACS"
# Axis=0 means to filter the index labels!
acs = available.filter(regex="^ACS", axis=0)

acs
Out[59]:
c_isMicrodata c_isTimeseries publisher temporal spatial programCode modified keyword contactPoint distribution description bureauCode accessLevel title c_isAvailable c_isCube c_isAggregate c_valuesLink c_groupsLink c_examplesLink c_tagsLink c_variablesLink c_geographyLink c_dataset vintage
ACSCD1132011 NaN NaN U.S. Census Bureau 2011/2011 United States 006:004 2014-10-06 () {'fn': 'American Community Survey Office', 'hasEmail': 'acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2011/acs1/cd113', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) is a nationwide survey designed to provide communities a fresh look at how they are changing. The ACS replaced the decennial census long form in 2010 and therea... 006:07 public 2011 American Community Survey 1-Year Profiles for the 113th Congressional Districts True NaN True https://api.census.gov/data/2011/acs1/cd113/values.json https://api.census.gov/data/2011/acs1/cd113/groups.json https://api.census.gov/data/2011/acs1/cd113/examples.json https://api.census.gov/data/2011/acs1/cd113/tags.json https://api.census.gov/data/2011/acs1/cd113/variables.json https://api.census.gov/data/2011/acs1/cd113/geography.json (acs1, cd113) 2011.0
ACSCD1152015 NaN NaN U.S. Census Bureau 2015/2015 United States 006:004 2017-02-10 () {'fn': 'American Community Survey Office', 'hasEmail': 'acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2015/acs1/cd115', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public 2015 American Community Survey 1-Year Data Profile 115th Congressional District True NaN True https://api.census.gov/data/2015/acs1/cd115/values.json https://api.census.gov/data/2015/acs1/cd115/groups.json https://api.census.gov/data/2015/acs1/cd115/examples.json https://api.census.gov/data/2015/acs1/cd115/tags.json https://api.census.gov/data/2015/acs1/cd115/variables.json https://api.census.gov/data/2015/acs1/cd115/geography.json (acs1, cd115) 2015.0
ACSCP1Y2010 NaN NaN U.S. Census Bureau unidentified United States 006:004 2018-09-18 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2010/acs/acs1/cprofile', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API end... The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... NaN NaN ACS 1-Year Comparison Profiles True True True https://api.census.gov/data/2010/acs/acs1/cprofile/values.json https://api.census.gov/data/2010/acs/acs1/cprofile/groups.json https://api.census.gov/data/2010/acs/acs1/cprofile/examples.json https://api.census.gov/data/2010/acs/acs1/cprofile/tags.json https://api.census.gov/data/2010/acs/acs1/cprofile/variables.json https://api.census.gov/data/2010/acs/acs1/cprofile/geography.json (acs, acs1, cprofile) 2010.0
ACSCP1Y2011 NaN NaN U.S. Census Bureau unidentified United States 006:004 2018-09-18 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2011/acs/acs1/cprofile', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API end... The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... NaN NaN ACS 1-Year Comparison Profiles True True True https://api.census.gov/data/2011/acs/acs1/cprofile/values.json https://api.census.gov/data/2011/acs/acs1/cprofile/groups.json https://api.census.gov/data/2011/acs/acs1/cprofile/examples.json https://api.census.gov/data/2011/acs/acs1/cprofile/tags.json https://api.census.gov/data/2011/acs/acs1/cprofile/variables.json https://api.census.gov/data/2011/acs/acs1/cprofile/geography.json (acs, acs1, cprofile) 2011.0
ACSCP1Y2012 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2018-07-05 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2012/acs/acs1/cprofile', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API end... The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public ACS 1-Year Comparison Profiles True True True https://api.census.gov/data/2012/acs/acs1/cprofile/values.json https://api.census.gov/data/2012/acs/acs1/cprofile/groups.json https://api.census.gov/data/2012/acs/acs1/cprofile/examples.json https://api.census.gov/data/2012/acs/acs1/cprofile/tags.json https://api.census.gov/data/2012/acs/acs1/cprofile/variables.json https://api.census.gov/data/2012/acs/acs1/cprofile/geography.json (acs, acs1, cprofile) 2012.0
ACSCP1Y2013 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2018-07-05 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2013/acs/acs1/cprofile', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API end... The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public ACS 1-Year Comparison Profiles True True True https://api.census.gov/data/2013/acs/acs1/cprofile/values.json https://api.census.gov/data/2013/acs/acs1/cprofile/groups.json https://api.census.gov/data/2013/acs/acs1/cprofile/examples.json https://api.census.gov/data/2013/acs/acs1/cprofile/tags.json https://api.census.gov/data/2013/acs/acs1/cprofile/variables.json https://api.census.gov/data/2013/acs/acs1/cprofile/geography.json (acs, acs1, cprofile) 2013.0
ACSCP1Y2014 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2018-06-20 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2014/acs/acs1/cprofile', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API end... The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public ACS 1-Year Comparison Profiles True True True https://api.census.gov/data/2014/acs/acs1/cprofile/values.json https://api.census.gov/data/2014/acs/acs1/cprofile/groups.json https://api.census.gov/data/2014/acs/acs1/cprofile/examples.json https://api.census.gov/data/2014/acs/acs1/cprofile/tags.json https://api.census.gov/data/2014/acs/acs1/cprofile/variables.json https://api.census.gov/data/2014/acs/acs1/cprofile/geography.json (acs, acs1, cprofile) 2014.0
ACSCP1Y2015 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2018-06-20 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2015/acs/acs1/cprofile', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API end... The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public ACS 1-Year Comparison Profiles True True True https://api.census.gov/data/2015/acs/acs1/cprofile/values.json https://api.census.gov/data/2015/acs/acs1/cprofile/groups.json https://api.census.gov/data/2015/acs/acs1/cprofile/examples.json https://api.census.gov/data/2015/acs/acs1/cprofile/tags.json https://api.census.gov/data/2015/acs/acs1/cprofile/variables.json https://api.census.gov/data/2015/acs/acs1/cprofile/geography.json (acs, acs1, cprofile) 2015.0
ACSCP1Y2016 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2018-06-20 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2016/acs/acs1/cprofile', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API end... The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public ACS 1-Year Comparison Profiles True True True https://api.census.gov/data/2016/acs/acs1/cprofile/values.json https://api.census.gov/data/2016/acs/acs1/cprofile/groups.json https://api.census.gov/data/2016/acs/acs1/cprofile/examples.json https://api.census.gov/data/2016/acs/acs1/cprofile/tags.json https://api.census.gov/data/2016/acs/acs1/cprofile/variables.json https://api.census.gov/data/2016/acs/acs1/cprofile/geography.json (acs, acs1, cprofile) 2016.0
ACSCP1Y2017 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2018-09-06 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2017/acs/acs1/cprofile', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API end... The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public ACS 1-Year Comparison Profiles True True True https://api.census.gov/data/2017/acs/acs1/cprofile/values.json https://api.census.gov/data/2017/acs/acs1/cprofile/groups.json https://api.census.gov/data/2017/acs/acs1/cprofile/examples.json https://api.census.gov/data/2017/acs/acs1/cprofile/tags.json https://api.census.gov/data/2017/acs/acs1/cprofile/variables.json https://api.census.gov/data/2017/acs/acs1/cprofile/geography.json (acs, acs1, cprofile) 2017.0
ACSCP1Y2018 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2019-07-15 09:36:24.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2018/acs/acs1/cprofile', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API end... The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public American Community Survey: 1-Year Estimates: Comparison Profiles 1-Year True True True https://api.census.gov/data/2018/acs/acs1/cprofile/values.json https://api.census.gov/data/2018/acs/acs1/cprofile/groups.json https://api.census.gov/data/2018/acs/acs1/cprofile/examples.json https://api.census.gov/data/2018/acs/acs1/cprofile/tags.json https://api.census.gov/data/2018/acs/acs1/cprofile/variables.json https://api.census.gov/data/2018/acs/acs1/cprofile/geography.json (acs, acs1, cprofile) 2018.0
ACSCP1Y2019 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2020-04-03 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:Acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2019/acs/acs1/cprofile', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API end... The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... NaN NaN American Community Survey: 1-Year Estimates: Comparison Profiles 1-Year True True True https://api.census.gov/data/2019/acs/acs1/cprofile/values.json https://api.census.gov/data/2019/acs/acs1/cprofile/groups.json https://api.census.gov/data/2019/acs/acs1/cprofile/examples.json https://api.census.gov/data/2019/acs/acs1/cprofile/tags.json https://api.census.gov/data/2019/acs/acs1/cprofile/variables.json https://api.census.gov/data/2019/acs/acs1/cprofile/geography.json (acs, acs1, cprofile) 2019.0
ACSCP3Y2012 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2020-02-03 09:25:46.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2012/acs/acs3/cprofile', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API end... The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... NaN NaN American Community Survey: 3-Year Estimates: Comparison Profiles 3-Year True True True https://api.census.gov/data/2012/acs/acs3/cprofile/values.json https://api.census.gov/data/2012/acs/acs3/cprofile/groups.json https://api.census.gov/data/2012/acs/acs3/cprofile/examples.json https://api.census.gov/data/2012/acs/acs3/cprofile/tags.json https://api.census.gov/data/2012/acs/acs3/cprofile/variables.json https://api.census.gov/data/2012/acs/acs3/cprofile/geography.json (acs, acs3, cprofile) 2012.0
ACSCP3Y2013 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2020-02-05 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2013/acs/acs3/cprofile', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API end... The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... NaN NaN American Community Survey: 3-Year Estimates: Comparison Profiles 3-Year True True True https://api.census.gov/data/2013/acs/acs3/cprofile/values.json https://api.census.gov/data/2013/acs/acs3/cprofile/groups.json https://api.census.gov/data/2013/acs/acs3/cprofile/examples.json https://api.census.gov/data/2013/acs/acs3/cprofile/tags.json https://api.census.gov/data/2013/acs/acs3/cprofile/variables.json https://api.census.gov/data/2013/acs/acs3/cprofile/geography.json (acs, acs3, cprofile) 2013.0
ACSCP5Y2015 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2018-06-29 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2015/acs/acs5/cprofile', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API end... The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public ACS 5-Year Comparison Profiles True True True https://api.census.gov/data/2015/acs/acs5/cprofile/values.json https://api.census.gov/data/2015/acs/acs5/cprofile/groups.json https://api.census.gov/data/2015/acs/acs5/cprofile/examples.json https://api.census.gov/data/2015/acs/acs5/cprofile/tags.json https://api.census.gov/data/2015/acs/acs5/cprofile/variables.json https://api.census.gov/data/2015/acs/acs5/cprofile/geography.json (acs, acs5, cprofile) 2015.0
ACSCP5Y2016 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2018-06-29 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2016/acs/acs5/cprofile', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API end... The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public ACS 5-Year Comparison Profiles True True True https://api.census.gov/data/2016/acs/acs5/cprofile/values.json https://api.census.gov/data/2016/acs/acs5/cprofile/groups.json https://api.census.gov/data/2016/acs/acs5/cprofile/examples.json https://api.census.gov/data/2016/acs/acs5/cprofile/tags.json https://api.census.gov/data/2016/acs/acs5/cprofile/variables.json https://api.census.gov/data/2016/acs/acs5/cprofile/geography.json (acs, acs5, cprofile) 2016.0
ACSCP5Y2017 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2018-10-19 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2017/acs/acs5/cprofile', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API end... The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public ACS 5-Year Comparison Profiles True True True https://api.census.gov/data/2017/acs/acs5/cprofile/values.json https://api.census.gov/data/2017/acs/acs5/cprofile/groups.json https://api.census.gov/data/2017/acs/acs5/cprofile/examples.json https://api.census.gov/data/2017/acs/acs5/cprofile/tags.json https://api.census.gov/data/2017/acs/acs5/cprofile/variables.json https://api.census.gov/data/2017/acs/acs5/cprofile/geography.json (acs, acs5, cprofile) 2017.0
ACSCP5Y2018 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2019-10-22 14:54:09.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:Acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2018/acs/acs5/cprofile', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API end... The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public American Community Survey: 5-Year Estimates: Comparison Profiles 5-Year True True True https://api.census.gov/data/2018/acs/acs5/cprofile/values.json https://api.census.gov/data/2018/acs/acs5/cprofile/groups.json https://api.census.gov/data/2018/acs/acs5/cprofile/examples.json https://api.census.gov/data/2018/acs/acs5/cprofile/tags.json https://api.census.gov/data/2018/acs/acs5/cprofile/variables.json https://api.census.gov/data/2018/acs/acs5/cprofile/geography.json (acs, acs5, cprofile) 2018.0
ACSCP5Y2019 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2020-04-03 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:Acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2019/acs/acs5/cprofile', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API end... The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public American Community Survey: 5-Year Estimates: Comparison Profiles 5-Year True True True https://api.census.gov/data/2019/acs/acs5/cprofile/values.json https://api.census.gov/data/2019/acs/acs5/cprofile/groups.json https://api.census.gov/data/2019/acs/acs5/cprofile/examples.json https://api.census.gov/data/2019/acs/acs5/cprofile/tags.json https://api.census.gov/data/2019/acs/acs5/cprofile/variables.json https://api.census.gov/data/2019/acs/acs5/cprofile/geography.json (acs, acs5, cprofile) 2019.0
ACSDP1Y2005 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2019-08-29 09:56:34.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2005/acs/acs1/profile', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endp... The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... NaN NaN American Community Survey: 1-Year Estimates: Data Profiles 1-Year True True True https://api.census.gov/data/2005/acs/acs1/profile/values.json https://api.census.gov/data/2005/acs/acs1/profile/groups.json https://api.census.gov/data/2005/acs/acs1/profile/examples.json https://api.census.gov/data/2005/acs/acs1/profile/tags.json https://api.census.gov/data/2005/acs/acs1/profile/variables.json https://api.census.gov/data/2005/acs/acs1/profile/geography.json (acs, acs1, profile) 2005.0
ACSDP1Y2006 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2019-08-29 09:40:51.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2006/acs/acs1/profile', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endp... The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... NaN NaN American Community Survey: 1-Year Estimates: Data Profiles 1-Year True True True https://api.census.gov/data/2006/acs/acs1/profile/values.json https://api.census.gov/data/2006/acs/acs1/profile/groups.json https://api.census.gov/data/2006/acs/acs1/profile/examples.json https://api.census.gov/data/2006/acs/acs1/profile/tags.json https://api.census.gov/data/2006/acs/acs1/profile/variables.json https://api.census.gov/data/2006/acs/acs1/profile/geography.json (acs, acs1, profile) 2006.0
ACSDP1Y2007 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2019-08-29 09:13:41.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2007/acs/acs1/profile', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endp... The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... NaN NaN American Community Survey: 1-Year Estimates: Data Profiles 1-Year True True True https://api.census.gov/data/2007/acs/acs1/profile/values.json https://api.census.gov/data/2007/acs/acs1/profile/groups.json https://api.census.gov/data/2007/acs/acs1/profile/examples.json https://api.census.gov/data/2007/acs/acs1/profile/tags.json https://api.census.gov/data/2007/acs/acs1/profile/variables.json https://api.census.gov/data/2007/acs/acs1/profile/geography.json (acs, acs1, profile) 2007.0
ACSDP1Y2008 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2019-08-29 08:38:11.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2008/acs/acs1/profile', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endp... The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... NaN NaN American Community Survey: 1-Year Estimates: Data Profiles 1-Year True True True https://api.census.gov/data/2008/acs/acs1/profile/values.json https://api.census.gov/data/2008/acs/acs1/profile/groups.json https://api.census.gov/data/2008/acs/acs1/profile/examples.json https://api.census.gov/data/2008/acs/acs1/profile/tags.json https://api.census.gov/data/2008/acs/acs1/profile/variables.json https://api.census.gov/data/2008/acs/acs1/profile/geography.json (acs, acs1, profile) 2008.0
ACSDP1Y2009 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2019-08-27 12:22:20.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2009/acs/acs1/profile', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endp... The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... NaN NaN American Community Survey: 1-Year Estimates: Data Profiles 1-Year True True True https://api.census.gov/data/2009/acs/acs1/profile/values.json https://api.census.gov/data/2009/acs/acs1/profile/groups.json https://api.census.gov/data/2009/acs/acs1/profile/examples.json https://api.census.gov/data/2009/acs/acs1/profile/tags.json https://api.census.gov/data/2009/acs/acs1/profile/variables.json https://api.census.gov/data/2009/acs/acs1/profile/geography.json (acs, acs1, profile) 2009.0
ACSDP1Y2010 NaN NaN U.S. Census Bureau unidentified United States 006:004 2018-06-20 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2010/acs/acs1/profile', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endp... The American Community Survey (ACS) is a nationwide survey designed to provide communities a fresh look at how they are changing. The ACS replaced the decennial census long form in 2010 and therea... NaN NaN ACS 1-Year Data Profiles True True True https://api.census.gov/data/2010/acs/acs1/profile/values.json https://api.census.gov/data/2010/acs/acs1/profile/groups.json https://api.census.gov/data/2010/acs/acs1/profile/examples.json https://api.census.gov/data/2010/acs/acs1/profile/tags.json https://api.census.gov/data/2010/acs/acs1/profile/variables.json https://api.census.gov/data/2010/acs/acs1/profile/geography.json (acs, acs1, profile) 2010.0
ACSDP1Y2011 NaN NaN U.S. Census Bureau unidentified United States 006:004 2018-06-20 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2011/acs/acs1/profile', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endp... The American Community Survey (ACS) is a nationwide survey designed to provide communities a fresh look at how they are changing. The ACS replaced the decennial census long form in 2010 and therea... NaN NaN ACS 1-Year Data Profiles True True True https://api.census.gov/data/2011/acs/acs1/profile/values.json https://api.census.gov/data/2011/acs/acs1/profile/groups.json https://api.census.gov/data/2011/acs/acs1/profile/examples.json https://api.census.gov/data/2011/acs/acs1/profile/tags.json https://api.census.gov/data/2011/acs/acs1/profile/variables.json https://api.census.gov/data/2011/acs/acs1/profile/geography.json (acs, acs1, profile) 2011.0
ACSDP1Y2012 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2018-06-20 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2012/acs/acs1/profile', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endp... The American Community Survey (ACS) is a uswide survey designed to provide communities a fresh look at how they are changing. The ACS replaced the decennial census long form in 2010 and thereafter... 006:07 public ACS 1-Year Data Profiles True True True https://api.census.gov/data/2012/acs/acs1/profile/values.json https://api.census.gov/data/2012/acs/acs1/profile/groups.json https://api.census.gov/data/2012/acs/acs1/profile/examples.json https://api.census.gov/data/2012/acs/acs1/profile/tags.json https://api.census.gov/data/2012/acs/acs1/profile/variables.json https://api.census.gov/data/2012/acs/acs1/profile/geography.json (acs, acs1, profile) 2012.0
ACSDP1Y2013 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2018-07-02 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2013/acs/acs1/profile', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endp... The American Community Survey (ACS) is a uswide survey designed to provide communities a fresh look at how they are changing. The ACS replaced the decennial census long form in 2010 and thereafter... 006:07 public ACS 1-Year Data Profiles True True True https://api.census.gov/data/2013/acs/acs1/profile/values.json https://api.census.gov/data/2013/acs/acs1/profile/groups.json https://api.census.gov/data/2013/acs/acs1/profile/examples.json https://api.census.gov/data/2013/acs/acs1/profile/tags.json https://api.census.gov/data/2013/acs/acs1/profile/variables.json https://api.census.gov/data/2013/acs/acs1/profile/geography.json (acs, acs1, profile) 2013.0
ACSDP1Y2014 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2018-06-20 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2014/acs/acs1/profile', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endp... The American Community Survey (ACS) is a uswide survey designed to provide communities a fresh look at how they are changing. The ACS replaced the decennial census long form in 2010 and thereafter... 006:07 public ACS 1-Year Data Profiles True True True https://api.census.gov/data/2014/acs/acs1/profile/values.json https://api.census.gov/data/2014/acs/acs1/profile/groups.json https://api.census.gov/data/2014/acs/acs1/profile/examples.json https://api.census.gov/data/2014/acs/acs1/profile/tags.json https://api.census.gov/data/2014/acs/acs1/profile/variables.json https://api.census.gov/data/2014/acs/acs1/profile/geography.json (acs, acs1, profile) 2014.0
ACSDP1Y2015 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2018-06-20 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2015/acs/acs1/profile', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endp... The American Community Survey (ACS) is a uswide survey designed to provide communities a fresh look at how they are changing. The ACS replaced the decennial census long form in 2010 and thereafter... 006:07 public ACS 1-Year Data Profiles True True True https://api.census.gov/data/2015/acs/acs1/profile/values.json https://api.census.gov/data/2015/acs/acs1/profile/groups.json https://api.census.gov/data/2015/acs/acs1/profile/examples.json https://api.census.gov/data/2015/acs/acs1/profile/tags.json https://api.census.gov/data/2015/acs/acs1/profile/variables.json https://api.census.gov/data/2015/acs/acs1/profile/geography.json (acs, acs1, profile) 2015.0
ACSDP1Y2016 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2018-06-20 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2016/acs/acs1/profile', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endp... The American Community Survey (ACS) is a uswide survey designed to provide communities a fresh look at how they are changing. The ACS replaced the decennial census long form in 2010 and thereafter... 006:07 public ACS 1-Year Data Profiles True True True https://api.census.gov/data/2016/acs/acs1/profile/values.json https://api.census.gov/data/2016/acs/acs1/profile/groups.json https://api.census.gov/data/2016/acs/acs1/profile/examples.json https://api.census.gov/data/2016/acs/acs1/profile/tags.json https://api.census.gov/data/2016/acs/acs1/profile/variables.json https://api.census.gov/data/2016/acs/acs1/profile/geography.json (acs, acs1, profile) 2016.0
ACSDP1Y2017 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2018-09-06 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2017/acs/acs1/profile', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endp... The American Community Survey (ACS) is a uswide survey designed to provide communities a fresh look at how they are changing. The ACS replaced the decennial census long form in 2010 and thereafter... 006:07 public ACS 1-Year Data Profiles True True True https://api.census.gov/data/2017/acs/acs1/profile/values.json https://api.census.gov/data/2017/acs/acs1/profile/groups.json https://api.census.gov/data/2017/acs/acs1/profile/examples.json https://api.census.gov/data/2017/acs/acs1/profile/tags.json https://api.census.gov/data/2017/acs/acs1/profile/variables.json https://api.census.gov/data/2017/acs/acs1/profile/geography.json (acs, acs1, profile) 2017.0
ACSDP1Y2018 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2019-06-25 15:57:43.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2018/acs/acs1/profile', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endp... The American Community Survey (ACS) is a uswide survey designed to provide communities a fresh look at how they are changing. The ACS replaced the decennial census long form in 2010 and thereafter... 006:07 public ACS 1-Year Profile Tables True True True https://api.census.gov/data/2018/acs/acs1/profile/values.json https://api.census.gov/data/2018/acs/acs1/profile/groups.json https://api.census.gov/data/2018/acs/acs1/profile/examples.json https://api.census.gov/data/2018/acs/acs1/profile/tags.json https://api.census.gov/data/2018/acs/acs1/profile/variables.json https://api.census.gov/data/2018/acs/acs1/profile/geography.json (acs, acs1, profile) 2018.0
ACSDP1Y2019 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2020-04-03 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:Acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2019/acs/acs1/profile', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endp... The American Community Survey (ACS) is a uswide survey designed to provide communities a fresh look at how they are changing. The ACS replaced the decennial census long form in 2010 and thereafter... NaN NaN American Community Survey: 1-Year Estimates: Data Profiles 1-Year True True True https://api.census.gov/data/2019/acs/acs1/profile/values.json https://api.census.gov/data/2019/acs/acs1/profile/groups.json https://api.census.gov/data/2019/acs/acs1/profile/examples.json https://api.census.gov/data/2019/acs/acs1/profile/tags.json https://api.census.gov/data/2019/acs/acs1/profile/variables.json https://api.census.gov/data/2019/acs/acs1/profile/geography.json (acs, acs1, profile) 2019.0
ACSDP3Y2007 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2019-08-29 09:03:27.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2007/acs/acs3/profile', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endp... The American Community Survey (ACS) is a nationwide survey designed to provide communities a fresh look at how they are changing. The ACS replaced the decennial census long form in 2010 and therea... NaN NaN American Community Survey: 3-Year Estimates: Data Profiles 3-Year True True True https://api.census.gov/data/2007/acs/acs3/profile/values.json https://api.census.gov/data/2007/acs/acs3/profile/groups.json https://api.census.gov/data/2007/acs/acs3/profile/examples.json https://api.census.gov/data/2007/acs/acs3/profile/tags.json https://api.census.gov/data/2007/acs/acs3/profile/variables.json https://api.census.gov/data/2007/acs/acs3/profile/geography.json (acs, acs3, profile) 2007.0
ACSDP3Y2008 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2019-08-28 13:38:57.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2008/acs/acs3/profile', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endp... The American Community Survey (ACS) is a nationwide survey designed to provide communities a fresh look at how they are changing. The ACS replaced the decennial census long form in 2010 and therea... NaN NaN American Community Survey: 3-Year Estimates: Data Profiles 3-Year True True True https://api.census.gov/data/2008/acs/acs3/profile/values.json https://api.census.gov/data/2008/acs/acs3/profile/groups.json https://api.census.gov/data/2008/acs/acs3/profile/examples.json https://api.census.gov/data/2008/acs/acs3/profile/tags.json https://api.census.gov/data/2008/acs/acs3/profile/variables.json https://api.census.gov/data/2008/acs/acs3/profile/geography.json (acs, acs3, profile) 2008.0
ACSDP3Y2009 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2019-10-09 06:43:35.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2009/acs/acs3/profile', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endp... The American Community Survey (ACS) is a nationwide survey designed to provide communities a fresh look at how they are changing. The ACS replaced the decennial census long form in 2010 and therea... NaN NaN American Community Survey: 3-Year Estimates: Data Profiles 3-Year True True True https://api.census.gov/data/2009/acs/acs3/profile/values.json https://api.census.gov/data/2009/acs/acs3/profile/groups.json https://api.census.gov/data/2009/acs/acs3/profile/examples.json https://api.census.gov/data/2009/acs/acs3/profile/tags.json https://api.census.gov/data/2009/acs/acs3/profile/variables.json https://api.census.gov/data/2009/acs/acs3/profile/geography.json (acs, acs3, profile) 2009.0
ACSDP3Y2010 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2020-01-28 09:44:53.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2010/acs/acs3/profile', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endp... The American Community Survey (ACS) is a nationwide survey designed to provide communities a fresh look at how they are changing. The ACS replaced the decennial census long form in 2010 and therea... NaN NaN American Community Survey: 3-Year Estimates: Data Profiles 3-Year True True True https://api.census.gov/data/2010/acs/acs3/profile/values.json https://api.census.gov/data/2010/acs/acs3/profile/groups.json https://api.census.gov/data/2010/acs/acs3/profile/examples.json https://api.census.gov/data/2010/acs/acs3/profile/tags.json https://api.census.gov/data/2010/acs/acs3/profile/variables.json https://api.census.gov/data/2010/acs/acs3/profile/geography.json (acs, acs3, profile) 2010.0
ACSDP3Y2011 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2020-01-28 13:45:30.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2011/acs/acs3/profile', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endp... The American Community Survey (ACS) is a nationwide survey designed to provide communities a fresh look at how they are changing. The ACS replaced the decennial census long form in 2010 and therea... NaN NaN American Community Survey: 3-Year Estimates: Data Profiles 3-Year True True True https://api.census.gov/data/2011/acs/acs3/profile/values.json https://api.census.gov/data/2011/acs/acs3/profile/groups.json https://api.census.gov/data/2011/acs/acs3/profile/examples.json https://api.census.gov/data/2011/acs/acs3/profile/tags.json https://api.census.gov/data/2011/acs/acs3/profile/variables.json https://api.census.gov/data/2011/acs/acs3/profile/geography.json (acs, acs3, profile) 2011.0
ACSDP3Y2012 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2020-01-28 15:14:18.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2012/acs/acs3/profile', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endp... The American Community Survey (ACS) is a nationwide survey designed to provide communities a fresh look at how they are changing. The ACS replaced the decennial census long form in 2010 and therea... NaN NaN American Community Survey: 3-Year Estimates: Data Profiles 3-Year True True True https://api.census.gov/data/2012/acs/acs3/profile/values.json https://api.census.gov/data/2012/acs/acs3/profile/groups.json https://api.census.gov/data/2012/acs/acs3/profile/examples.json https://api.census.gov/data/2012/acs/acs3/profile/tags.json https://api.census.gov/data/2012/acs/acs3/profile/variables.json https://api.census.gov/data/2012/acs/acs3/profile/geography.json (acs, acs3, profile) 2012.0
ACSDP3Y2013 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2020-01-28 15:59:11.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2013/acs/acs3/profile', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endp... The American Community Survey (ACS) is a nationwide survey designed to provide communities a fresh look at how they are changing. The ACS replaced the decennial census long form in 2010 and therea... NaN NaN American Community Survey: 3-Year Estimates: Data Profiles 3-Year True True True https://api.census.gov/data/2013/acs/acs3/profile/values.json https://api.census.gov/data/2013/acs/acs3/profile/groups.json https://api.census.gov/data/2013/acs/acs3/profile/examples.json https://api.census.gov/data/2013/acs/acs3/profile/tags.json https://api.census.gov/data/2013/acs/acs3/profile/variables.json https://api.census.gov/data/2013/acs/acs3/profile/geography.json (acs, acs3, profile) 2013.0
ACSDP5Y2009 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2019-08-29 10:36:01.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2009/acs/acs5/profile', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endp... The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... NaN NaN American Community Survey: 5-Year Estimates: Data Profiles 5-Year True True True https://api.census.gov/data/2009/acs/acs5/profile/values.json https://api.census.gov/data/2009/acs/acs5/profile/groups.json https://api.census.gov/data/2009/acs/acs5/profile/examples.json https://api.census.gov/data/2009/acs/acs5/profile/tags.json https://api.census.gov/data/2009/acs/acs5/profile/variables.json https://api.census.gov/data/2009/acs/acs5/profile/geography.json (acs, acs5, profile) 2009.0
ACSDP5Y2010 NaN NaN U.S. Census Bureau unidentified United States 006:004 2018-06-29 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2010/acs/acs5/profile', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endp... The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... NaN NaN ACS 5-Year Data Profiles True True True https://api.census.gov/data/2010/acs/acs5/profile/values.json https://api.census.gov/data/2010/acs/acs5/profile/groups.json https://api.census.gov/data/2010/acs/acs5/profile/examples.json https://api.census.gov/data/2010/acs/acs5/profile/tags.json https://api.census.gov/data/2010/acs/acs5/profile/variables.json https://api.census.gov/data/2010/acs/acs5/profile/geography.json (acs, acs5, profile) 2010.0
ACSDP5Y2011 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2018-06-29 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2011/acs/acs5/profile', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endp... The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public ACS 5-Year Data Profiles True True True https://api.census.gov/data/2011/acs/acs5/profile/values.json https://api.census.gov/data/2011/acs/acs5/profile/groups.json https://api.census.gov/data/2011/acs/acs5/profile/examples.json https://api.census.gov/data/2011/acs/acs5/profile/tags.json https://api.census.gov/data/2011/acs/acs5/profile/variables.json https://api.census.gov/data/2011/acs/acs5/profile/geography.json (acs, acs5, profile) 2011.0
ACSDP5Y2012 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2018-06-29 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2012/acs/acs5/profile', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endp... The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public ACS 5-Year Data Profiles True True True https://api.census.gov/data/2012/acs/acs5/profile/values.json https://api.census.gov/data/2012/acs/acs5/profile/groups.json https://api.census.gov/data/2012/acs/acs5/profile/examples.json https://api.census.gov/data/2012/acs/acs5/profile/tags.json https://api.census.gov/data/2012/acs/acs5/profile/variables.json https://api.census.gov/data/2012/acs/acs5/profile/geography.json (acs, acs5, profile) 2012.0
ACSDP5Y2013 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2018-06-29 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2013/acs/acs5/profile', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endp... The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public ACS 5-Year Data Profiles True True True https://api.census.gov/data/2013/acs/acs5/profile/values.json https://api.census.gov/data/2013/acs/acs5/profile/groups.json https://api.census.gov/data/2013/acs/acs5/profile/examples.json https://api.census.gov/data/2013/acs/acs5/profile/tags.json https://api.census.gov/data/2013/acs/acs5/profile/variables.json https://api.census.gov/data/2013/acs/acs5/profile/geography.json (acs, acs5, profile) 2013.0
ACSDP5Y2014 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2018-06-29 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2014/acs/acs5/profile', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endp... The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public ACS 5-Year Data Profiles True True True https://api.census.gov/data/2014/acs/acs5/profile/values.json https://api.census.gov/data/2014/acs/acs5/profile/groups.json https://api.census.gov/data/2014/acs/acs5/profile/examples.json https://api.census.gov/data/2014/acs/acs5/profile/tags.json https://api.census.gov/data/2014/acs/acs5/profile/variables.json https://api.census.gov/data/2014/acs/acs5/profile/geography.json (acs, acs5, profile) 2014.0
ACSDP5Y2015 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2018-06-29 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2015/acs/acs5/profile', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endp... The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public ACS 5-Year Data Profiles True True True https://api.census.gov/data/2015/acs/acs5/profile/values.json https://api.census.gov/data/2015/acs/acs5/profile/groups.json https://api.census.gov/data/2015/acs/acs5/profile/examples.json https://api.census.gov/data/2015/acs/acs5/profile/tags.json https://api.census.gov/data/2015/acs/acs5/profile/variables.json https://api.census.gov/data/2015/acs/acs5/profile/geography.json (acs, acs5, profile) 2015.0
ACSDP5Y2016 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2018-06-29 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2016/acs/acs5/profile', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endp... The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public ACS 5-Year Data Profiles True True True https://api.census.gov/data/2016/acs/acs5/profile/values.json https://api.census.gov/data/2016/acs/acs5/profile/groups.json https://api.census.gov/data/2016/acs/acs5/profile/examples.json https://api.census.gov/data/2016/acs/acs5/profile/tags.json https://api.census.gov/data/2016/acs/acs5/profile/variables.json https://api.census.gov/data/2016/acs/acs5/profile/geography.json (acs, acs5, profile) 2016.0
ACSDP5Y2017 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2018-10-19 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2017/acs/acs5/profile', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endp... The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public ACS 5-Year Data Profiles True True True https://api.census.gov/data/2017/acs/acs5/profile/values.json https://api.census.gov/data/2017/acs/acs5/profile/groups.json https://api.census.gov/data/2017/acs/acs5/profile/examples.json https://api.census.gov/data/2017/acs/acs5/profile/tags.json https://api.census.gov/data/2017/acs/acs5/profile/variables.json https://api.census.gov/data/2017/acs/acs5/profile/geography.json (acs, acs5, profile) 2017.0
ACSDP5Y2018 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2019-10-22 16:22:18.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:Acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2018/acs/acs5/profile', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endp... The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... NaN NaN ACS 5-Year Data Profiles True True True https://api.census.gov/data/2018/acs/acs5/profile/values.json https://api.census.gov/data/2018/acs/acs5/profile/groups.json https://api.census.gov/data/2018/acs/acs5/profile/examples.json https://api.census.gov/data/2018/acs/acs5/profile/tags.json https://api.census.gov/data/2018/acs/acs5/profile/variables.json https://api.census.gov/data/2018/acs/acs5/profile/geography.json (acs, acs5, profile) 2018.0
ACSDP5Y2019 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2020-04-03 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2019/acs/acs5/profile', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endp... The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public American Community Survey: 5-Year Estimates: Data Profiles 5-Year True True True https://api.census.gov/data/2019/acs/acs5/profile/values.json https://api.census.gov/data/2019/acs/acs5/profile/groups.json https://api.census.gov/data/2019/acs/acs5/profile/examples.json https://api.census.gov/data/2019/acs/acs5/profile/tags.json https://api.census.gov/data/2019/acs/acs5/profile/variables.json https://api.census.gov/data/2019/acs/acs5/profile/geography.json (acs, acs5, profile) 2019.0
ACSDP5YAIAN2010 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2019-10-24 06:46:02.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2010/acs/acs5/aianprofile', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API ... The American Indian and Alaska Native (AIAN) tables are released every five years. They are available for selected tribal populations, with more detailed tribal categories compared to those in the... NaN NaN American Community Survey: 5-Year Estimates: American Indian and Alaska Native Data Profiles 5-Year True True True https://api.census.gov/data/2010/acs/acs5/aianprofile/values.json https://api.census.gov/data/2010/acs/acs5/aianprofile/groups.json https://api.census.gov/data/2010/acs/acs5/aianprofile/examples.json https://api.census.gov/data/2010/acs/acs5/aianprofile/tags.json https://api.census.gov/data/2010/acs/acs5/aianprofile/variables.json https://api.census.gov/data/2010/acs/acs5/aianprofile/geography.json (acs, acs5, aianprofile) 2010.0
ACSDP5YAIAN2015 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2020-02-11 08:52:59.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2015/acs/acs5/aianprofile', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API ... The American Indian and Alaska Native (AIAN) tables are released every five years. They are available for selected tribal populations, with more detailed tribal categories compared to those in the... NaN NaN American Community Survey: 5-Year Estimates: American Indian and Alaska Native Data Profiles 5-Year True True True https://api.census.gov/data/2015/acs/acs5/aianprofile/values.json https://api.census.gov/data/2015/acs/acs5/aianprofile/groups.json https://api.census.gov/data/2015/acs/acs5/aianprofile/examples.json https://api.census.gov/data/2015/acs/acs5/aianprofile/tags.json https://api.census.gov/data/2015/acs/acs5/aianprofile/variables.json https://api.census.gov/data/2015/acs/acs5/aianprofile/geography.json (acs, acs5, aianprofile) 2015.0
ACSDP5YSPT2010 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2019-10-09 13:54:45.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2010/acs/acs5/sptprofile', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API e... The Selected Population Tables (SPT) are released every five years. They are available for selected race, Hispanic origin, tribal, and ancestry populations. NaN NaN American Community Survey: 5-Year Estimates: Selected Population Data Profiles 5-Year True True True https://api.census.gov/data/2010/acs/acs5/sptprofile/values.json https://api.census.gov/data/2010/acs/acs5/sptprofile/groups.json https://api.census.gov/data/2010/acs/acs5/sptprofile/examples.json https://api.census.gov/data/2010/acs/acs5/sptprofile/tags.json https://api.census.gov/data/2010/acs/acs5/sptprofile/variables.json https://api.census.gov/data/2010/acs/acs5/sptprofile/geography.json (acs, acs5, sptprofile) 2010.0
ACSDT1Y2005 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2019-08-27 12:50:06.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2005/acs/acs1', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... NaN NaN American Community Survey: 1-Year Estimates: Detailed Tables 1-Year True True True https://api.census.gov/data/2005/acs/acs1/values.json https://api.census.gov/data/2005/acs/acs1/groups.json https://api.census.gov/data/2005/acs/acs1/examples.json https://api.census.gov/data/2005/acs/acs1/tags.json https://api.census.gov/data/2005/acs/acs1/variables.json https://api.census.gov/data/2005/acs/acs1/geography.json (acs, acs1) 2005.0
ACSDT1Y2006 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2019-08-27 10:47:47.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2006/acs/acs1', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... NaN NaN American Community Survey: 1-Year Estimates: Detailed Tables 1-Year True True True https://api.census.gov/data/2006/acs/acs1/values.json https://api.census.gov/data/2006/acs/acs1/groups.json https://api.census.gov/data/2006/acs/acs1/examples.json https://api.census.gov/data/2006/acs/acs1/tags.json https://api.census.gov/data/2006/acs/acs1/variables.json https://api.census.gov/data/2006/acs/acs1/geography.json (acs, acs1) 2006.0
ACSDT1Y2007 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2019-08-27 10:05:20.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2007/acs/acs1', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... NaN NaN American Community Survey: 1-Year Estimates: Detailed Tables 1-Year True True True https://api.census.gov/data/2007/acs/acs1/values.json https://api.census.gov/data/2007/acs/acs1/groups.json https://api.census.gov/data/2007/acs/acs1/examples.json https://api.census.gov/data/2007/acs/acs1/tags.json https://api.census.gov/data/2007/acs/acs1/variables.json https://api.census.gov/data/2007/acs/acs1/geography.json (acs, acs1) 2007.0
ACSDT1Y2008 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2019-08-27 07:30:33.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2008/acs/acs1', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... NaN NaN American Community Survey: 1-Year Estimates: Detailed Tables 1-Year True True True https://api.census.gov/data/2008/acs/acs1/values.json https://api.census.gov/data/2008/acs/acs1/groups.json https://api.census.gov/data/2008/acs/acs1/examples.json https://api.census.gov/data/2008/acs/acs1/tags.json https://api.census.gov/data/2008/acs/acs1/variables.json https://api.census.gov/data/2008/acs/acs1/geography.json (acs, acs1) 2008.0
ACSDT1Y2009 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2019-08-26 10:52:39.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2009/acs/acs1', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... NaN NaN American Community Survey: 1-Year Estimates: Detailed Tables 1-Year True True True https://api.census.gov/data/2009/acs/acs1/values.json https://api.census.gov/data/2009/acs/acs1/groups.json https://api.census.gov/data/2009/acs/acs1/examples.json https://api.census.gov/data/2009/acs/acs1/tags.json https://api.census.gov/data/2009/acs/acs1/variables.json https://api.census.gov/data/2009/acs/acs1/geography.json (acs, acs1) 2009.0
ACSDT1Y2010 NaN NaN U.S. Census Bureau unidentified United States 006:004 2018-07-04 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2010/acs/acs1', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) is a nationwide survey designed to provide communities a fresh look at how they are changing. The ACS replaced the decennial census long form in 2010 and therea... NaN NaN ACS 1-Year Detailed Tables True True True https://api.census.gov/data/2010/acs/acs1/values.json https://api.census.gov/data/2010/acs/acs1/groups.json https://api.census.gov/data/2010/acs/acs1/examples.json https://api.census.gov/data/2010/acs/acs1/tags.json https://api.census.gov/data/2010/acs/acs1/variables.json https://api.census.gov/data/2010/acs/acs1/geography.json (acs, acs1) 2010.0
ACSDT1Y2011 NaN NaN U.S. Census Bureau unidentified United States 006:004 2018-07-04 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2011/acs/acs1', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) is a nationwide survey designed to provide communities a fresh look at how they are changing. The ACS replaced the decennial census long form in 2010 and therea... NaN NaN ACS 1-Year Detailed Tables True True True https://api.census.gov/data/2011/acs/acs1/values.json https://api.census.gov/data/2011/acs/acs1/groups.json https://api.census.gov/data/2011/acs/acs1/examples.json https://api.census.gov/data/2011/acs/acs1/tags.json https://api.census.gov/data/2011/acs/acs1/variables.json https://api.census.gov/data/2011/acs/acs1/geography.json (acs, acs1) 2011.0
ACSDT1Y2012 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2018-07-04 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2012/acs/acs1', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) is a nationwide survey designed to provide communities a fresh look at how they are changing. The ACS replaced the decennial census long form in 2010 and therea... 006:07 public ACS 1-Year Detailed Tables True True True https://api.census.gov/data/2012/acs/acs1/values.json https://api.census.gov/data/2012/acs/acs1/groups.json https://api.census.gov/data/2012/acs/acs1/examples.json https://api.census.gov/data/2012/acs/acs1/tags.json https://api.census.gov/data/2012/acs/acs1/variables.json https://api.census.gov/data/2012/acs/acs1/geography.json (acs, acs1) 2012.0
ACSDT1Y2013 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2018-07-04 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2013/acs/acs1', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) is a nationwide survey designed to provide communities a fresh look at how they are changing. The ACS replaced the decennial census long form in 2010 and therea... 006:07 public ACS 1-Year Detailed Tables True True True https://api.census.gov/data/2013/acs/acs1/values.json https://api.census.gov/data/2013/acs/acs1/groups.json https://api.census.gov/data/2013/acs/acs1/examples.json https://api.census.gov/data/2013/acs/acs1/tags.json https://api.census.gov/data/2013/acs/acs1/variables.json https://api.census.gov/data/2013/acs/acs1/geography.json (acs, acs1) 2013.0
ACSDT1Y2014 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2018-07-05 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2014/acs/acs1', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public ACS 1-Year Detailed Tables True True True https://api.census.gov/data/2014/acs/acs1/values.json https://api.census.gov/data/2014/acs/acs1/groups.json https://api.census.gov/data/2014/acs/acs1/examples.json https://api.census.gov/data/2014/acs/acs1/tags.json https://api.census.gov/data/2014/acs/acs1/variables.json https://api.census.gov/data/2014/acs/acs1/geography.json (acs, acs1) 2014.0
ACSDT1Y2015 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2021-03-24 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2015/acs/acs1', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) is a nationwide survey designed to provide communities a fresh look at how they are changing. The ACS replaced the decennial census long form in 2010 and therea... 006:07 public ACS 1-Year Detailed Tables True True True https://api.census.gov/data/2015/acs/acs1/values.json https://api.census.gov/data/2015/acs/acs1/groups.json https://api.census.gov/data/2015/acs/acs1/examples.json https://api.census.gov/data/2015/acs/acs1/tags.json https://api.census.gov/data/2015/acs/acs1/variables.json https://api.census.gov/data/2015/acs/acs1/geography.json (acs, acs1) 2015.0
ACSDT1Y2016 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2018-07-05 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2016/acs/acs1', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public ACS 1-Year Detailed Tables True True True https://api.census.gov/data/2016/acs/acs1/values.json https://api.census.gov/data/2016/acs/acs1/groups.json https://api.census.gov/data/2016/acs/acs1/examples.json https://api.census.gov/data/2016/acs/acs1/tags.json https://api.census.gov/data/2016/acs/acs1/variables.json https://api.census.gov/data/2016/acs/acs1/geography.json (acs, acs1) 2016.0
ACSDT1Y2017 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2018-09-06 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2017/acs/acs1', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public ACS 1-Year Detailed Tables True True True https://api.census.gov/data/2017/acs/acs1/values.json https://api.census.gov/data/2017/acs/acs1/groups.json https://api.census.gov/data/2017/acs/acs1/examples.json https://api.census.gov/data/2017/acs/acs1/tags.json https://api.census.gov/data/2017/acs/acs1/variables.json https://api.census.gov/data/2017/acs/acs1/geography.json (acs, acs1) 2017.0
ACSDT1Y2018 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2019-06-25 15:57:36.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2018/acs/acs1', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public American Community Survey: 1-Year Estimates: Detailed Tables 1-Year True True True https://api.census.gov/data/2018/acs/acs1/values.json https://api.census.gov/data/2018/acs/acs1/groups.json https://api.census.gov/data/2018/acs/acs1/examples.json https://api.census.gov/data/2018/acs/acs1/tags.json https://api.census.gov/data/2018/acs/acs1/variables.json https://api.census.gov/data/2018/acs/acs1/geography.json (acs, acs1) 2018.0
ACSDT1Y2019 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2020-04-03 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:Acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2019/acs/acs1', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public American Community Survey: 1-Year Estimates: Detailed Tables 1-Year True True True https://api.census.gov/data/2019/acs/acs1/values.json https://api.census.gov/data/2019/acs/acs1/groups.json https://api.census.gov/data/2019/acs/acs1/examples.json https://api.census.gov/data/2019/acs/acs1/tags.json https://api.census.gov/data/2019/acs/acs1/variables.json https://api.census.gov/data/2019/acs/acs1/geography.json (acs, acs1) 2019.0
ACSDT3Y2007 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2019-08-29 09:23:35.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2007/acs/acs3', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) is a nationwide survey designed to provide communities a fresh look at how they are changing. The ACS replaced the decennial census long form in 2010 and therea... NaN NaN American Community Survey: 3-Year Estimates: Detailed Tables 3-Year True True True https://api.census.gov/data/2007/acs/acs3/values.json https://api.census.gov/data/2007/acs/acs3/groups.json https://api.census.gov/data/2007/acs/acs3/examples.json https://api.census.gov/data/2007/acs/acs3/tags.json https://api.census.gov/data/2007/acs/acs3/variables.json https://api.census.gov/data/2007/acs/acs3/geography.json (acs, acs3) 2007.0
ACSDT3Y2008 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2019-08-28 09:07:18.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2008/acs/acs3', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) is a nationwide survey designed to provide communities a fresh look at how they are changing. The ACS replaced the decennial census long form in 2010 and therea... NaN NaN American Community Survey: 3-Year Estimates: Detailed Tables 3-Year True True True https://api.census.gov/data/2008/acs/acs3/values.json https://api.census.gov/data/2008/acs/acs3/groups.json https://api.census.gov/data/2008/acs/acs3/examples.json https://api.census.gov/data/2008/acs/acs3/tags.json https://api.census.gov/data/2008/acs/acs3/variables.json https://api.census.gov/data/2008/acs/acs3/geography.json (acs, acs3) 2008.0
ACSDT3Y2009 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2019-10-08 07:27:05.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2009/acs/acs3', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) is a nationwide survey designed to provide communities a fresh look at how they are changing. The ACS replaced the decennial census long form in 2010 and therea... NaN NaN American Community Survey: 3-Year Estimates: Detailed Tables 3-Year True True True https://api.census.gov/data/2009/acs/acs3/values.json https://api.census.gov/data/2009/acs/acs3/groups.json https://api.census.gov/data/2009/acs/acs3/examples.json https://api.census.gov/data/2009/acs/acs3/tags.json https://api.census.gov/data/2009/acs/acs3/variables.json https://api.census.gov/data/2009/acs/acs3/geography.json (acs, acs3) 2009.0
ACSDT3Y2011 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2020-01-30 14:14:31.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2011/acs/acs3', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) is a nationwide survey designed to provide communities a fresh look at how they are changing. The ACS replaced the decennial census long form in 2010 and therea... NaN NaN American Community Survey: 3-Year Estimates: Detailed Tables 3-Year True True True https://api.census.gov/data/2011/acs/acs3/values.json https://api.census.gov/data/2011/acs/acs3/groups.json https://api.census.gov/data/2011/acs/acs3/examples.json https://api.census.gov/data/2011/acs/acs3/tags.json https://api.census.gov/data/2011/acs/acs3/variables.json https://api.census.gov/data/2011/acs/acs3/geography.json (acs, acs3) 2011.0
ACSDT3Y2012 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2020-01-31 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2012/acs/acs3', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) is a nationwide survey designed to provide communities a fresh look at how they are changing. The ACS replaced the decennial census long form in 2010 and therea... NaN NaN American Community Survey: 3-Year Estimates: Detailed Tables 3-Year True True True https://api.census.gov/data/2012/acs/acs3/values.json https://api.census.gov/data/2012/acs/acs3/groups.json https://api.census.gov/data/2012/acs/acs3/examples.json https://api.census.gov/data/2012/acs/acs3/tags.json https://api.census.gov/data/2012/acs/acs3/variables.json https://api.census.gov/data/2012/acs/acs3/geography.json (acs, acs3) 2012.0
ACSDT3Y2013 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2020-01-31 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2013/acs/acs3', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) is a nationwide survey designed to provide communities a fresh look at how they are changing. The ACS replaced the decennial census long form in 2010 and therea... NaN NaN American Community Survey: 3-Year Estimates: Detailed Tables 3-Year True True True https://api.census.gov/data/2013/acs/acs3/values.json https://api.census.gov/data/2013/acs/acs3/groups.json https://api.census.gov/data/2013/acs/acs3/examples.json https://api.census.gov/data/2013/acs/acs3/tags.json https://api.census.gov/data/2013/acs/acs3/variables.json https://api.census.gov/data/2013/acs/acs3/geography.json (acs, acs3) 2013.0
ACSDT5Y2009 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2019-08-27 13:11:18.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2009/acs/acs5', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... NaN NaN American Community Survey: 5-Year Estimates: Detailed Tables 5-Year True True True https://api.census.gov/data/2009/acs/acs5/values.json https://api.census.gov/data/2009/acs/acs5/groups.json https://api.census.gov/data/2009/acs/acs5/examples.json https://api.census.gov/data/2009/acs/acs5/tags.json https://api.census.gov/data/2009/acs/acs5/variables.json https://api.census.gov/data/2009/acs/acs5/geography.json (acs, acs5) 2009.0
ACSDT5Y2010 NaN NaN U.S. Census Bureau unidentified United States 006:004 2018-07-04 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2010/acs/acs5', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... NaN NaN ACS 5-Year Detailed Tables True True True https://api.census.gov/data/2010/acs/acs5/values.json https://api.census.gov/data/2010/acs/acs5/groups.json https://api.census.gov/data/2010/acs/acs5/examples.json https://api.census.gov/data/2010/acs/acs5/tags.json https://api.census.gov/data/2010/acs/acs5/variables.json https://api.census.gov/data/2010/acs/acs5/geography.json (acs, acs5) 2010.0
ACSDT5Y2011 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2018-07-04 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2011/acs/acs5', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public ACS 5-Year Detailed Tables True True True https://api.census.gov/data/2011/acs/acs5/values.json https://api.census.gov/data/2011/acs/acs5/groups.json https://api.census.gov/data/2011/acs/acs5/examples.json https://api.census.gov/data/2011/acs/acs5/tags.json https://api.census.gov/data/2011/acs/acs5/variables.json https://api.census.gov/data/2011/acs/acs5/geography.json (acs, acs5) 2011.0
ACSDT5Y2012 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2018-07-04 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2012/acs/acs5', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public ACS 5-Year Detailed Tables True True True https://api.census.gov/data/2012/acs/acs5/values.json https://api.census.gov/data/2012/acs/acs5/groups.json https://api.census.gov/data/2012/acs/acs5/examples.json https://api.census.gov/data/2012/acs/acs5/tags.json https://api.census.gov/data/2012/acs/acs5/variables.json https://api.census.gov/data/2012/acs/acs5/geography.json (acs, acs5) 2012.0
ACSDT5Y2013 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2018-07-04 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2013/acs/acs5', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public ACS 5-Year Detailed Tables True True True https://api.census.gov/data/2013/acs/acs5/values.json https://api.census.gov/data/2013/acs/acs5/groups.json https://api.census.gov/data/2013/acs/acs5/examples.json https://api.census.gov/data/2013/acs/acs5/tags.json https://api.census.gov/data/2013/acs/acs5/variables.json https://api.census.gov/data/2013/acs/acs5/geography.json (acs, acs5) 2013.0
ACSDT5Y2014 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2018-07-04 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2014/acs/acs5', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public ACS 5-Year Detailed Tables True True True https://api.census.gov/data/2014/acs/acs5/values.json https://api.census.gov/data/2014/acs/acs5/groups.json https://api.census.gov/data/2014/acs/acs5/examples.json https://api.census.gov/data/2014/acs/acs5/tags.json https://api.census.gov/data/2014/acs/acs5/variables.json https://api.census.gov/data/2014/acs/acs5/geography.json (acs, acs5) 2014.0
ACSDT5Y2015 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2018-07-05 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2015/acs/acs5', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public ACS 5-Year Detailed Tables True True True https://api.census.gov/data/2015/acs/acs5/values.json https://api.census.gov/data/2015/acs/acs5/groups.json https://api.census.gov/data/2015/acs/acs5/examples.json https://api.census.gov/data/2015/acs/acs5/tags.json https://api.census.gov/data/2015/acs/acs5/variables.json https://api.census.gov/data/2015/acs/acs5/geography.json (acs, acs5) 2015.0
ACSDT5Y2016 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2018-07-05 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2016/acs/acs5', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public ACS 5-Year Detailed Tables True True True https://api.census.gov/data/2016/acs/acs5/values.json https://api.census.gov/data/2016/acs/acs5/groups.json https://api.census.gov/data/2016/acs/acs5/examples.json https://api.census.gov/data/2016/acs/acs5/tags.json https://api.census.gov/data/2016/acs/acs5/variables.json https://api.census.gov/data/2016/acs/acs5/geography.json (acs, acs5) 2016.0
ACSDT5Y2017 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2018-08-21 07:11:43.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2017/acs/acs5', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public ACS 5-Year Detailed Tables True True True https://api.census.gov/data/2017/acs/acs5/values.json https://api.census.gov/data/2017/acs/acs5/groups.json https://api.census.gov/data/2017/acs/acs5/examples.json https://api.census.gov/data/2017/acs/acs5/tags.json https://api.census.gov/data/2017/acs/acs5/variables.json https://api.census.gov/data/2017/acs/acs5/geography.json (acs, acs5) 2017.0
ACSDT5Y2018 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2019-10-22 16:28:02.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:Acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2018/acs/acs5', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public American Community Survey: 5-Year Estimates: Detailed Tables 5-Year True True True https://api.census.gov/data/2018/acs/acs5/values.json https://api.census.gov/data/2018/acs/acs5/groups.json https://api.census.gov/data/2018/acs/acs5/examples.json https://api.census.gov/data/2018/acs/acs5/tags.json https://api.census.gov/data/2018/acs/acs5/variables.json https://api.census.gov/data/2018/acs/acs5/geography.json (acs, acs5) 2018.0
ACSDT5Y2019 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2020-04-03 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:Acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2019/acs/acs5', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public American Community Survey: 5-Year Estimates: Detailed Tables 5-Year True True True https://api.census.gov/data/2019/acs/acs5/values.json https://api.census.gov/data/2019/acs/acs5/groups.json https://api.census.gov/data/2019/acs/acs5/examples.json https://api.census.gov/data/2019/acs/acs5/tags.json https://api.census.gov/data/2019/acs/acs5/variables.json https://api.census.gov/data/2019/acs/acs5/geography.json (acs, acs5) 2019.0
ACSDT5YAIAN2010 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2019-10-24 07:18:57.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2010/acs/acs5/aian', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Indian and Alaska Native (AIAN) tables are released every five years. They are available for selected tribal populations, with more detailed tribal categories compared to those in the... NaN NaN American Community Survey: 5-Year Estimates: American Indian and Alaska Native Detailed Tables 5-Year True True True https://api.census.gov/data/2010/acs/acs5/aian/values.json https://api.census.gov/data/2010/acs/acs5/aian/groups.json https://api.census.gov/data/2010/acs/acs5/aian/examples.json https://api.census.gov/data/2010/acs/acs5/aian/tags.json https://api.census.gov/data/2010/acs/acs5/aian/variables.json https://api.census.gov/data/2010/acs/acs5/aian/geography.json (acs, acs5, aian) 2010.0
ACSDT5YAIAN2015 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2020-02-13 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2015/acs/acs5/aian', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Indian and Alaska Native (AIAN) tables are released every five years. They are available for selected tribal populations, with more detailed tribal categories compared to those in the... NaN NaN ACS 5-Year AIAN Detailed Tables True True True https://api.census.gov/data/2015/acs/acs5/aian/values.json https://api.census.gov/data/2015/acs/acs5/aian/groups.json https://api.census.gov/data/2015/acs/acs5/aian/examples.json https://api.census.gov/data/2015/acs/acs5/aian/tags.json https://api.census.gov/data/2015/acs/acs5/aian/variables.json https://api.census.gov/data/2015/acs/acs5/aian/geography.json (acs, acs5, aian) 2015.0
ACSDT5YSPT2010 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2019-10-11 14:16:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2010/acs/acs5/spt', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The Selected Population Tables (SPT) are released every five years. They are available for selected race, Hispanic origin, tribal, and ancestry populations. NaN NaN American Community Survey: 5-Year Estimates: Selected Population Detailed Tables 5-Year True True True https://api.census.gov/data/2010/acs/acs5/spt/values.json https://api.census.gov/data/2010/acs/acs5/spt/groups.json https://api.census.gov/data/2010/acs/acs5/spt/examples.json https://api.census.gov/data/2010/acs/acs5/spt/tags.json https://api.census.gov/data/2010/acs/acs5/spt/variables.json https://api.census.gov/data/2010/acs/acs5/spt/geography.json (acs, acs5, spt) 2010.0
ACSDT5YSPT2015 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2020-02-18 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2015/acs/acs5/spt', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The Selected Population Tables (SPT) are released every five years. They are available for selected race, Hispanic origin, tribal, and ancestry populations. NaN NaN American Community Survey: 5-Year Estimates: Selected Population Detailed Tables 5-Year True True True https://api.census.gov/data/2015/acs/acs5/spt/values.json https://api.census.gov/data/2015/acs/acs5/spt/groups.json https://api.census.gov/data/2015/acs/acs5/spt/examples.json https://api.census.gov/data/2015/acs/acs5/spt/tags.json https://api.census.gov/data/2015/acs/acs5/spt/variables.json https://api.census.gov/data/2015/acs/acs5/spt/geography.json (acs, acs5, spt) 2015.0
ACSFLOWS2016 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2018-10-10 00:00:00.0 () {'fn': 'Journey to Work and Migration Statistics Branch', 'hasEmail': 'sehsd.migration@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2016/acs/flows', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} Migration flows are derived from the relationship between the location of current residence in the American Community Survey (ACS) sample and the responses given to the migration question "Where d... NaN NaN ACS FLOWS True True True https://api.census.gov/data/2016/acs/flows/values.json https://api.census.gov/data/2016/acs/flows/groups.json https://api.census.gov/data/2016/acs/flows/examples.json https://api.census.gov/data/2016/acs/flows/tags.json https://api.census.gov/data/2016/acs/flows/variables.json https://api.census.gov/data/2016/acs/flows/geography.json (acs, flows) 2016.0
ACSFLOWS2017 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2019-08-20 10:12:55.0 () {'fn': 'Journey to Work and Migration Statistics Branch', 'hasEmail': 'mailto:sehsd.migration@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2017/acs/flows', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} Migration flows are derived from the relationship between the location of current residence in the American Community Survey (ACS) sample and the responses given to the migration question "Where d... NaN NaN ACS FLOWS True True True https://api.census.gov/data/2017/acs/flows/values.json https://api.census.gov/data/2017/acs/flows/groups.json https://api.census.gov/data/2017/acs/flows/examples.json https://api.census.gov/data/2017/acs/flows/tags.json https://api.census.gov/data/2017/acs/flows/variables.json https://api.census.gov/data/2017/acs/flows/geography.json (acs, flows) 2017.0
ACSFLOWS2018 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2020-04-07 00:00:00.0 () {'fn': 'Journey to Work and Migration Statistics Branch', 'hasEmail': 'mailto:sehsd.migration@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2018/acs/flows', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} Migration flows are derived from the relationship between the location of current residence in the American Community Survey (ACS) sample and the responses given to the migration question "Where d... NaN NaN 2014-2018 American Community Survey: Migration Flows True NaN True https://api.census.gov/data/2018/acs/flows/values.json https://api.census.gov/data/2018/acs/flows/groups.json https://api.census.gov/data/2018/acs/flows/examples.json https://api.census.gov/data/2018/acs/flows/tags.json https://api.census.gov/data/2018/acs/flows/variables.json https://api.census.gov/data/2018/acs/flows/geography.json (acs, flows) 2018.0
ACSFLOWS2019 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2021-04-29 00:00:00.0 () {'fn': 'Journey-to-Work and Migration Statistics Branch', 'hasEmail': 'mailto:sehsd.migration@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2019/acs/flows', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} Migration flows are derived from the relationship between the location of current residence in the American Community Survey (ACS) sample and the responses given to the migration question "Where d... 006:07 public 2015-2019 American Community Survey: Migration Flows True NaN True https://api.census.gov/data/2019/acs/flows/values.json https://api.census.gov/data/2019/acs/flows/groups.json https://api.census.gov/data/2019/acs/flows/examples.json https://api.census.gov/data/2019/acs/flows/tags.json https://api.census.gov/data/2019/acs/flows/variables.json https://api.census.gov/data/2019/acs/flows/geography.json (acs, flows) 2019.0
ACSFlows2010 NaN NaN U.S. Census Bureau 2006-2010 United States 006:004 2018-08-22 () {'fn': 'Journey to Work and Migration Statistics Branch', 'hasEmail': 'sehsd.migration@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2010/acs/flows', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} Migration flows are derived from the relationship between the location of current residence in the American Community Survey (ACS) sample and the responses given to the migration question "Where d... 006:07 public 2006-2010 American Community Survey: Migration Flows True NaN True https://api.census.gov/data/2010/acs/flows/values.json https://api.census.gov/data/2010/acs/flows/groups.json https://api.census.gov/data/2010/acs/flows/examples.json https://api.census.gov/data/2010/acs/flows/tags.json https://api.census.gov/data/2010/acs/flows/variables.json https://api.census.gov/data/2010/acs/flows/geography.json (acs, flows) 2010.0
ACSFlows2011 NaN NaN U.S. Census Bureau 2006-2010 United States 006:004 2018-08-22 () {'fn': 'Journey to Work and Migration Statistics Branch', 'hasEmail': 'sehsd.migration@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2011/acs/flows', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} Migration flows are derived from the relationship between the location of current residence in the American Community Survey (ACS) sample and the responses given to the migration question "Where d... 006:07 public 2007-2011 American Community Survey: Migration Flows True NaN True https://api.census.gov/data/2011/acs/flows/values.json https://api.census.gov/data/2011/acs/flows/groups.json https://api.census.gov/data/2011/acs/flows/examples.json https://api.census.gov/data/2011/acs/flows/tags.json https://api.census.gov/data/2011/acs/flows/variables.json https://api.census.gov/data/2011/acs/flows/geography.json (acs, flows) 2011.0
ACSFlows2012 NaN NaN U.S. Census Bureau 2006-2010 United States 006:004 2018-08-22 () {'fn': 'Journey to Work and Migration Statistics Branch', 'hasEmail': 'sehsd.migration@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2012/acs/flows', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} Migration flows are derived from the relationship between the location of current residence in the American Community Survey (ACS) sample and the responses given to the migration question "Where d... 006:07 public 2008-2012 American Community Survey: Migration Flows True NaN True https://api.census.gov/data/2012/acs/flows/values.json https://api.census.gov/data/2012/acs/flows/groups.json https://api.census.gov/data/2012/acs/flows/examples.json https://api.census.gov/data/2012/acs/flows/tags.json https://api.census.gov/data/2012/acs/flows/variables.json https://api.census.gov/data/2012/acs/flows/geography.json (acs, flows) 2012.0
ACSFlows2013 NaN NaN U.S. Census Bureau 2006-2010 United States 006:004 2018-08-22 () {'fn': 'Journey to Work and Migration Statistics Branch', 'hasEmail': 'sehsd.migration@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2013/acs/flows', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} Migration flows are derived from the relationship between the location of current residence in the American Community Survey (ACS) sample and the responses given to the migration question "Where d... 006:07 public 2009-2013 American Community Survey: Migration Flows True NaN True https://api.census.gov/data/2013/acs/flows/values.json https://api.census.gov/data/2013/acs/flows/groups.json https://api.census.gov/data/2013/acs/flows/examples.json https://api.census.gov/data/2013/acs/flows/tags.json https://api.census.gov/data/2013/acs/flows/variables.json https://api.census.gov/data/2013/acs/flows/geography.json (acs, flows) 2013.0
ACSFlows2014 NaN NaN U.S. Census Bureau 2006-2010 United States 006:004 2018-08-22 () {'fn': 'Journey to Work and Migration Statistics Branch', 'hasEmail': 'sehsd.migration@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2014/acs/flows', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} Migration flows are derived from the relationship between the location of current residence in the American Community Survey (ACS) sample and the responses given to the migration question "Where d... 006:07 public 2010-2014 American Community Survey: Migration Flows True NaN True https://api.census.gov/data/2014/acs/flows/values.json https://api.census.gov/data/2014/acs/flows/groups.json https://api.census.gov/data/2014/acs/flows/examples.json https://api.census.gov/data/2014/acs/flows/tags.json https://api.census.gov/data/2014/acs/flows/variables.json https://api.census.gov/data/2014/acs/flows/geography.json (acs, flows) 2014.0
ACSFlows2015 NaN NaN U.S. Census Bureau 2006-2010 United States 006:004 2018-08-22 () {'fn': 'Journey to Work and Migration Statistics Branch', 'hasEmail': 'sehsd.migration@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2015/acs/flows', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} Migration flows are derived from the relationship between the location of current residence in the American Community Survey (ACS) sample and the responses given to the migration question "Where d... 006:07 public 2011-2015 American Community Survey: Migration Flows True NaN True https://api.census.gov/data/2015/acs/flows/values.json https://api.census.gov/data/2015/acs/flows/groups.json https://api.census.gov/data/2015/acs/flows/examples.json https://api.census.gov/data/2015/acs/flows/tags.json https://api.census.gov/data/2015/acs/flows/variables.json https://api.census.gov/data/2015/acs/flows/geography.json (acs, flows) 2015.0
ACSLANG5Y2013 NaN NaN U.S. Census Bureau 2013/2013 United States 006:004 2015-09-02 () {'fn': 'Education and Social Stratification Branch', 'hasEmail': 'dsd.ferrett@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2013/language', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} This data set uses the 2009-2013 American Community Survey to tabulate the number of speakers of languages spoken at home and the number of speakers of each language who speak English less than ve... 006:07 public 2013 American Community Survey - Table Packages: Detailed Language Spoken in the U.S. True NaN True https://api.census.gov/data/2013/language/values.json https://api.census.gov/data/2013/language/groups.json https://api.census.gov/data/2013/language/examples.json https://api.census.gov/data/2013/language/tags.json https://api.census.gov/data/2013/language/variables.json https://api.census.gov/data/2013/language/geography.json (language,) 2013.0
ACSPUMS1Y2004 True NaN U.S. Census Bureau unidentified NaN 006:004 2019-11-22 10:50:36.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2004/acs/acs1/pums', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) Public Use Microdata Sample (PUMS) contains a sample of responses to the ACS. The ACS PUMS dataset includes variables for nearly every question on the survey, a... 006:07 public Replace me with apiMetadata True True NaN https://api.census.gov/data/2004/acs/acs1/pums/values.json https://api.census.gov/data/2004/acs/acs1/pums/groups.json https://api.census.gov/data/2004/acs/acs1/pums/examples.json https://api.census.gov/data/2004/acs/acs1/pums/tags.json https://api.census.gov/data/2004/acs/acs1/pums/variables.json https://api.census.gov/data/2004/acs/acs1/pums/geography.json (acs, acs1, pums) 2004.0
ACSPUMS1Y2005 True NaN U.S. Census Bureau unidentified NaN 006:004 2019-11-22 10:51:37.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2005/acs/acs1/pums', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) Public Use Microdata Sample (PUMS) contains a sample of responses to the ACS. The ACS PUMS dataset includes variables for nearly every question on the survey, a... 006:07 public Replace me with apiMetadata True True NaN https://api.census.gov/data/2005/acs/acs1/pums/values.json https://api.census.gov/data/2005/acs/acs1/pums/groups.json https://api.census.gov/data/2005/acs/acs1/pums/examples.json https://api.census.gov/data/2005/acs/acs1/pums/tags.json https://api.census.gov/data/2005/acs/acs1/pums/variables.json https://api.census.gov/data/2005/acs/acs1/pums/geography.json (acs, acs1, pums) 2005.0
ACSPUMS1Y2006 True NaN U.S. Census Bureau unidentified NaN 006:004 2019-11-22 10:51:41.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2006/acs/acs1/pums', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) Public Use Microdata Sample (PUMS) contains a sample of responses to the ACS. The ACS PUMS dataset includes variables for nearly every question on the survey, a... 006:07 public 2006 American Community Survey: 1-Year Estimates - Public Use Microdata Sample True True NaN https://api.census.gov/data/2006/acs/acs1/pums/values.json https://api.census.gov/data/2006/acs/acs1/pums/groups.json https://api.census.gov/data/2006/acs/acs1/pums/examples.json https://api.census.gov/data/2006/acs/acs1/pums/tags.json https://api.census.gov/data/2006/acs/acs1/pums/variables.json https://api.census.gov/data/2006/acs/acs1/pums/geography.json (acs, acs1, pums) 2006.0
ACSPUMS1Y2007 True NaN U.S. Census Bureau unidentified NaN 006:004 2019-11-22 10:51:46.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2007/acs/acs1/pums', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) Public Use Microdata Sample (PUMS) contains a sample of responses to the ACS. The ACS PUMS dataset includes variables for nearly every question on the survey, a... 006:07 public 2007 American Community Survey: 1-Year Estimates - Public Use Microdata Sample True True NaN https://api.census.gov/data/2007/acs/acs1/pums/values.json https://api.census.gov/data/2007/acs/acs1/pums/groups.json https://api.census.gov/data/2007/acs/acs1/pums/examples.json https://api.census.gov/data/2007/acs/acs1/pums/tags.json https://api.census.gov/data/2007/acs/acs1/pums/variables.json https://api.census.gov/data/2007/acs/acs1/pums/geography.json (acs, acs1, pums) 2007.0
ACSPUMS1Y2008 True NaN U.S. Census Bureau unidentified NaN 006:004 2019-11-22 10:51:53.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2008/acs/acs1/pums', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) Public Use Microdata Sample (PUMS) contains a sample of responses to the ACS. The ACS PUMS dataset includes variables for nearly every question on the survey, a... 006:07 public 2008 American Community Survey: 1-Year Estimates - Public Use Microdata Sample True True NaN https://api.census.gov/data/2008/acs/acs1/pums/values.json https://api.census.gov/data/2008/acs/acs1/pums/groups.json https://api.census.gov/data/2008/acs/acs1/pums/examples.json https://api.census.gov/data/2008/acs/acs1/pums/tags.json https://api.census.gov/data/2008/acs/acs1/pums/variables.json https://api.census.gov/data/2008/acs/acs1/pums/geography.json (acs, acs1, pums) 2008.0
ACSPUMS1Y2009 True NaN U.S. Census Bureau unidentified NaN 006:004 2019-11-22 10:51:57.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2009/acs/acs1/pums', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) Public Use Microdata Sample (PUMS) contains a sample of responses to the ACS. The ACS PUMS dataset includes variables for nearly every question on the survey, a... 006:07 public 2009 American Community Survey: 1-Year Estimates - Public Use Microdata Sample True True NaN https://api.census.gov/data/2009/acs/acs1/pums/values.json https://api.census.gov/data/2009/acs/acs1/pums/groups.json https://api.census.gov/data/2009/acs/acs1/pums/examples.json https://api.census.gov/data/2009/acs/acs1/pums/tags.json https://api.census.gov/data/2009/acs/acs1/pums/variables.json https://api.census.gov/data/2009/acs/acs1/pums/geography.json (acs, acs1, pums) 2009.0
ACSPUMS1Y2010 True NaN U.S. Census Bureau unidentified NaN 006:004 2019-11-22 10:52:01.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2010/acs/acs1/pums', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) Public Use Microdata Sample (PUMS) contains a sample of responses to the ACS. The ACS PUMS dataset includes variables for nearly every question on the survey, a... 006:07 public 2010 American Community Survey: 1-Year Estimates - Public Use Microdata Sample True True NaN https://api.census.gov/data/2010/acs/acs1/pums/values.json https://api.census.gov/data/2010/acs/acs1/pums/groups.json https://api.census.gov/data/2010/acs/acs1/pums/examples.json https://api.census.gov/data/2010/acs/acs1/pums/tags.json https://api.census.gov/data/2010/acs/acs1/pums/variables.json https://api.census.gov/data/2010/acs/acs1/pums/geography.json (acs, acs1, pums) 2010.0
ACSPUMS1Y2011 True NaN U.S. Census Bureau unidentified NaN 006:004 2019-11-22 10:52:05.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2011/acs/acs1/pums', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) Public Use Microdata Sample (PUMS) contains a sample of responses to the ACS. The ACS PUMS dataset includes variables for nearly every question on the survey, a... 006:07 public 2011 American Community Survey: 1-Year Estimates - Public Use Microdata Sample True True NaN https://api.census.gov/data/2011/acs/acs1/pums/values.json https://api.census.gov/data/2011/acs/acs1/pums/groups.json https://api.census.gov/data/2011/acs/acs1/pums/examples.json https://api.census.gov/data/2011/acs/acs1/pums/tags.json https://api.census.gov/data/2011/acs/acs1/pums/variables.json https://api.census.gov/data/2011/acs/acs1/pums/geography.json (acs, acs1, pums) 2011.0
ACSPUMS1Y2012 True NaN U.S. Census Bureau unidentified NaN 006:004 2019-11-22 10:52:11.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2012/acs/acs1/pums', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) Public Use Microdata Sample (PUMS) contains a sample of responses to the ACS. The ACS PUMS dataset includes variables for nearly every question on the survey, a... 006:07 public 2012 American Community Survey: 1-Year Estimates - Public Use Microdata Sample True True NaN https://api.census.gov/data/2012/acs/acs1/pums/values.json https://api.census.gov/data/2012/acs/acs1/pums/groups.json https://api.census.gov/data/2012/acs/acs1/pums/examples.json https://api.census.gov/data/2012/acs/acs1/pums/tags.json https://api.census.gov/data/2012/acs/acs1/pums/variables.json https://api.census.gov/data/2012/acs/acs1/pums/geography.json (acs, acs1, pums) 2012.0
ACSPUMS1Y2013 True NaN U.S. Census Bureau unidentified NaN 006:004 2019-11-22 10:52:15.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2013/acs/acs1/pums', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) Public Use Microdata Sample (PUMS) contains a sample of responses to the ACS. The ACS PUMS dataset includes variables for nearly every question on the survey, a... 006:07 public 2013 American Community Survey: 1-Year Estimates - Public Use Microdata Sample True True NaN https://api.census.gov/data/2013/acs/acs1/pums/values.json https://api.census.gov/data/2013/acs/acs1/pums/groups.json https://api.census.gov/data/2013/acs/acs1/pums/examples.json https://api.census.gov/data/2013/acs/acs1/pums/tags.json https://api.census.gov/data/2013/acs/acs1/pums/variables.json https://api.census.gov/data/2013/acs/acs1/pums/geography.json (acs, acs1, pums) 2013.0
ACSPUMS1Y2014 True NaN U.S. Census Bureau unidentified NaN 006:004 2019-11-22 10:52:19.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2014/acs/acs1/pums', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) Public Use Microdata Sample (PUMS) contains a sample of responses to the ACS. The ACS PUMS dataset includes variables for nearly every question on the survey, a... 006:07 public 2014 American Community Survey: 1-Year Estimates - Public Use Microdata Sample True True NaN https://api.census.gov/data/2014/acs/acs1/pums/values.json https://api.census.gov/data/2014/acs/acs1/pums/groups.json https://api.census.gov/data/2014/acs/acs1/pums/examples.json https://api.census.gov/data/2014/acs/acs1/pums/tags.json https://api.census.gov/data/2014/acs/acs1/pums/variables.json https://api.census.gov/data/2014/acs/acs1/pums/geography.json (acs, acs1, pums) 2014.0
ACSPUMS1Y2015 True NaN U.S. Census Bureau unidentified NaN 006:004 2019-11-22 10:52:23.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2015/acs/acs1/pums', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) Public Use Microdata Sample (PUMS) contains a sample of responses to the ACS. The ACS PUMS dataset includes variables for nearly every question on the survey, a... 006:07 public 2015 American Community Survey: 1-Year Estimates - Public Use Microdata Sample True True NaN https://api.census.gov/data/2015/acs/acs1/pums/values.json https://api.census.gov/data/2015/acs/acs1/pums/groups.json https://api.census.gov/data/2015/acs/acs1/pums/examples.json https://api.census.gov/data/2015/acs/acs1/pums/tags.json https://api.census.gov/data/2015/acs/acs1/pums/variables.json https://api.census.gov/data/2015/acs/acs1/pums/geography.json (acs, acs1, pums) 2015.0
ACSPUMS1Y2016 True NaN U.S. Census Bureau unidentified NaN 006:004 2019-11-22 10:52:27.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2016/acs/acs1/pums', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) Public Use Microdata Sample (PUMS) contains a sample of responses to the ACS. The ACS PUMS dataset includes variables for nearly every question on the survey, a... 006:07 public 2016 American Community Survey: 1-Year Estimates - Public Use Microdata Sample True True NaN https://api.census.gov/data/2016/acs/acs1/pums/values.json https://api.census.gov/data/2016/acs/acs1/pums/groups.json https://api.census.gov/data/2016/acs/acs1/pums/examples.json https://api.census.gov/data/2016/acs/acs1/pums/tags.json https://api.census.gov/data/2016/acs/acs1/pums/variables.json https://api.census.gov/data/2016/acs/acs1/pums/geography.json (acs, acs1, pums) 2016.0
ACSPUMS1Y2017 True NaN U.S. Census Bureau unidentified NaN 006:004 2019-11-22 10:52:31.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2017/acs/acs1/pums', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) Public Use Microdata Sample (PUMS) contains a sample of responses to the ACS. The ACS PUMS dataset includes variables for nearly every question on the survey, a... 006:07 public 2017 American Community Survey: 1-Year Estimates - Public Use Microdata Sample True True NaN https://api.census.gov/data/2017/acs/acs1/pums/values.json https://api.census.gov/data/2017/acs/acs1/pums/groups.json https://api.census.gov/data/2017/acs/acs1/pums/examples.json https://api.census.gov/data/2017/acs/acs1/pums/tags.json https://api.census.gov/data/2017/acs/acs1/pums/variables.json https://api.census.gov/data/2017/acs/acs1/pums/geography.json (acs, acs1, pums) 2017.0
ACSPUMS1Y2018 True NaN U.S. Census Bureau unidentified NaN 006:004 2019-11-22 10:52:35.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2018/acs/acs1/pums', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) Public Use Microdata Sample (PUMS) contains a sample of responses to the ACS. The ACS PUMS dataset includes variables for nearly every question on the survey, a... 006:07 public 2018 American Community Survey: 1-Year Estimates - Public Use Microdata Sample True True NaN https://api.census.gov/data/2018/acs/acs1/pums/values.json https://api.census.gov/data/2018/acs/acs1/pums/groups.json https://api.census.gov/data/2018/acs/acs1/pums/examples.json https://api.census.gov/data/2018/acs/acs1/pums/tags.json https://api.census.gov/data/2018/acs/acs1/pums/variables.json https://api.census.gov/data/2018/acs/acs1/pums/geography.json (acs, acs1, pums) 2018.0
ACSPUMS1Y2019 True NaN U.S. Census Bureau unidentified NaN 006:004 2020-06-16 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2019/acs/acs1/pums', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) Public Use Microdata Sample (PUMS) contains a sample of responses to the ACS. The ACS PUMS dataset includes variables for nearly every question on the survey, a... 006:07 public ACS 1-Year PUMS True True NaN https://api.census.gov/data/2019/acs/acs1/pums/values.json https://api.census.gov/data/2019/acs/acs1/pums/groups.json https://api.census.gov/data/2019/acs/acs1/pums/examples.json https://api.census.gov/data/2019/acs/acs1/pums/tags.json https://api.census.gov/data/2019/acs/acs1/pums/variables.json https://api.census.gov/data/2019/acs/acs1/pums/geography.json (acs, acs1, pums) 2019.0
ACSPUMS1YPR2005 True NaN U.S. Census Bureau unidentified NaN 006:004 2019-11-22 11:58:26.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2005/acs/acs1/pumspr', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpo... The Public Use Microdata Sample (PUMS) for Puerto Rico (PR) contains a sample of responses to the Puerto Rico Community Survey (PRCS). The PRCS is similar to, but separate from, the American Commu... 006:07 public Replace me with apiMetadata True True NaN https://api.census.gov/data/2005/acs/acs1/pumspr/values.json https://api.census.gov/data/2005/acs/acs1/pumspr/groups.json https://api.census.gov/data/2005/acs/acs1/pumspr/examples.json https://api.census.gov/data/2005/acs/acs1/pumspr/tags.json https://api.census.gov/data/2005/acs/acs1/pumspr/variables.json https://api.census.gov/data/2005/acs/acs1/pumspr/geography.json (acs, acs1, pumspr) 2005.0
ACSPUMS1YPR2006 True NaN U.S. Census Bureau unidentified NaN 006:004 2019-11-22 11:58:45.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2006/acs/acs1/pumspr', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpo... The Public Use Microdata Sample (PUMS) for Puerto Rico (PR) contains a sample of responses to the Puerto Rico Community Survey (PRCS). The PRCS is similar to, but separate from, the American Commu... 006:07 public 2006 American Community Survey: 1-Year Estimates - Puerto Rico Public Use Microdata Sample True True NaN https://api.census.gov/data/2006/acs/acs1/pumspr/values.json https://api.census.gov/data/2006/acs/acs1/pumspr/groups.json https://api.census.gov/data/2006/acs/acs1/pumspr/examples.json https://api.census.gov/data/2006/acs/acs1/pumspr/tags.json https://api.census.gov/data/2006/acs/acs1/pumspr/variables.json https://api.census.gov/data/2006/acs/acs1/pumspr/geography.json (acs, acs1, pumspr) 2006.0
ACSPUMS1YPR2007 True NaN U.S. Census Bureau unidentified NaN 006:004 2019-11-22 11:58:49.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2007/acs/acs1/pumspr', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpo... The Public Use Microdata Sample (PUMS) for Puerto Rico (PR) contains a sample of responses to the Puerto Rico Community Survey (PRCS). The PRCS is similar to, but separate from, the American Commu... 006:07 public 2007 American Community Survey: 1-Year Estimates - Puerto Rico Public Use Microdata Sample True True NaN https://api.census.gov/data/2007/acs/acs1/pumspr/values.json https://api.census.gov/data/2007/acs/acs1/pumspr/groups.json https://api.census.gov/data/2007/acs/acs1/pumspr/examples.json https://api.census.gov/data/2007/acs/acs1/pumspr/tags.json https://api.census.gov/data/2007/acs/acs1/pumspr/variables.json https://api.census.gov/data/2007/acs/acs1/pumspr/geography.json (acs, acs1, pumspr) 2007.0
ACSPUMS1YPR2008 True NaN U.S. Census Bureau unidentified NaN 006:004 2019-11-22 11:58:54.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2008/acs/acs1/pumspr', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpo... The Public Use Microdata Sample (PUMS) for Puerto Rico (PR) contains a sample of responses to the Puerto Rico Community Survey (PRCS). The PRCS is similar to, but separate from, the American Commu... 006:07 public 2008 American Community Survey: 1-Year Estimates - Puerto Rico Public Use Microdata Sample True True NaN https://api.census.gov/data/2008/acs/acs1/pumspr/values.json https://api.census.gov/data/2008/acs/acs1/pumspr/groups.json https://api.census.gov/data/2008/acs/acs1/pumspr/examples.json https://api.census.gov/data/2008/acs/acs1/pumspr/tags.json https://api.census.gov/data/2008/acs/acs1/pumspr/variables.json https://api.census.gov/data/2008/acs/acs1/pumspr/geography.json (acs, acs1, pumspr) 2008.0
ACSPUMS1YPR2009 True NaN U.S. Census Bureau unidentified NaN 006:004 2019-11-22 11:58:58.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2009/acs/acs1/pumspr', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpo... The Public Use Microdata Sample (PUMS) for Puerto Rico (PR) contains a sample of responses to the Puerto Rico Community Survey (PRCS). The PRCS is similar to, but separate from, the American Commu... 006:07 public 2009 American Community Survey: 1-Year Estimates - Puerto Rico Public Use Microdata Sample True True NaN https://api.census.gov/data/2009/acs/acs1/pumspr/values.json https://api.census.gov/data/2009/acs/acs1/pumspr/groups.json https://api.census.gov/data/2009/acs/acs1/pumspr/examples.json https://api.census.gov/data/2009/acs/acs1/pumspr/tags.json https://api.census.gov/data/2009/acs/acs1/pumspr/variables.json https://api.census.gov/data/2009/acs/acs1/pumspr/geography.json (acs, acs1, pumspr) 2009.0
ACSPUMS1YPR2010 True NaN U.S. Census Bureau unidentified NaN 006:004 2019-11-22 11:59:02.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2010/acs/acs1/pumspr', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpo... The Public Use Microdata Sample (PUMS) for Puerto Rico (PR) contains a sample of responses to the Puerto Rico Community Survey (PRCS). The PRCS is similar to, but separate from, the American Commu... 006:07 public 2010 American Community Survey: 1-Year Estimates - Puerto Rico Public Use Microdata Sample True True NaN https://api.census.gov/data/2010/acs/acs1/pumspr/values.json https://api.census.gov/data/2010/acs/acs1/pumspr/groups.json https://api.census.gov/data/2010/acs/acs1/pumspr/examples.json https://api.census.gov/data/2010/acs/acs1/pumspr/tags.json https://api.census.gov/data/2010/acs/acs1/pumspr/variables.json https://api.census.gov/data/2010/acs/acs1/pumspr/geography.json (acs, acs1, pumspr) 2010.0
ACSPUMS1YPR2011 True NaN U.S. Census Bureau unidentified NaN 006:004 2019-11-22 11:59:06.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2011/acs/acs1/pumspr', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpo... The Public Use Microdata Sample (PUMS) for Puerto Rico (PR) contains a sample of responses to the Puerto Rico Community Survey (PRCS). The PRCS is similar to, but separate from, the American Commu... 006:07 public 2011 American Community Survey: 1-Year Estimates - Puerto Rico Public Use Microdata Sample True True NaN https://api.census.gov/data/2011/acs/acs1/pumspr/values.json https://api.census.gov/data/2011/acs/acs1/pumspr/groups.json https://api.census.gov/data/2011/acs/acs1/pumspr/examples.json https://api.census.gov/data/2011/acs/acs1/pumspr/tags.json https://api.census.gov/data/2011/acs/acs1/pumspr/variables.json https://api.census.gov/data/2011/acs/acs1/pumspr/geography.json (acs, acs1, pumspr) 2011.0
ACSPUMS1YPR2012 True NaN U.S. Census Bureau unidentified NaN 006:004 2019-11-22 11:59:09.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2012/acs/acs1/pumspr', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpo... The Public Use Microdata Sample (PUMS) for Puerto Rico (PR) contains a sample of responses to the Puerto Rico Community Survey (PRCS). The PRCS is similar to, but separate from, the American Commu... 006:07 public 2012 American Community Survey: 1-Year Estimates - Puerto Rico Public Use Microdata Sample True True NaN https://api.census.gov/data/2012/acs/acs1/pumspr/values.json https://api.census.gov/data/2012/acs/acs1/pumspr/groups.json https://api.census.gov/data/2012/acs/acs1/pumspr/examples.json https://api.census.gov/data/2012/acs/acs1/pumspr/tags.json https://api.census.gov/data/2012/acs/acs1/pumspr/variables.json https://api.census.gov/data/2012/acs/acs1/pumspr/geography.json (acs, acs1, pumspr) 2012.0
ACSPUMS1YPR2013 True NaN U.S. Census Bureau unidentified NaN 006:004 2019-11-22 11:59:14.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2013/acs/acs1/pumspr', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpo... The Public Use Microdata Sample (PUMS) for Puerto Rico (PR) contains a sample of responses to the Puerto Rico Community Survey (PRCS). The PRCS is similar to, but separate from, the American Commu... 006:07 public 2013 American Community Survey: 1-Year Estimates - Puerto Rico Public Use Microdata Sample True True NaN https://api.census.gov/data/2013/acs/acs1/pumspr/values.json https://api.census.gov/data/2013/acs/acs1/pumspr/groups.json https://api.census.gov/data/2013/acs/acs1/pumspr/examples.json https://api.census.gov/data/2013/acs/acs1/pumspr/tags.json https://api.census.gov/data/2013/acs/acs1/pumspr/variables.json https://api.census.gov/data/2013/acs/acs1/pumspr/geography.json (acs, acs1, pumspr) 2013.0
ACSPUMS1YPR2014 True NaN U.S. Census Bureau unidentified NaN 006:004 2019-11-22 11:59:17.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2014/acs/acs1/pumspr', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpo... The Public Use Microdata Sample (PUMS) for Puerto Rico (PR) contains a sample of responses to the Puerto Rico Community Survey (PRCS). The PRCS is similar to, but separate from, the American Commu... 006:07 public 2014 American Community Survey: 1-Year Estimates - Puerto Rico Public Use Microdata Sample True True NaN https://api.census.gov/data/2014/acs/acs1/pumspr/values.json https://api.census.gov/data/2014/acs/acs1/pumspr/groups.json https://api.census.gov/data/2014/acs/acs1/pumspr/examples.json https://api.census.gov/data/2014/acs/acs1/pumspr/tags.json https://api.census.gov/data/2014/acs/acs1/pumspr/variables.json https://api.census.gov/data/2014/acs/acs1/pumspr/geography.json (acs, acs1, pumspr) 2014.0
ACSPUMS1YPR2015 True NaN U.S. Census Bureau unidentified NaN 006:004 2019-11-22 11:59:21.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2015/acs/acs1/pumspr', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpo... The Public Use Microdata Sample (PUMS) for Puerto Rico (PR) contains a sample of responses to the Puerto Rico Community Survey (PRCS). The PRCS is similar to, but separate from, the American Commu... 006:07 public 2015 American Community Survey: 1-Year Estimates - Puerto Rico Public Use Microdata Sample True True NaN https://api.census.gov/data/2015/acs/acs1/pumspr/values.json https://api.census.gov/data/2015/acs/acs1/pumspr/groups.json https://api.census.gov/data/2015/acs/acs1/pumspr/examples.json https://api.census.gov/data/2015/acs/acs1/pumspr/tags.json https://api.census.gov/data/2015/acs/acs1/pumspr/variables.json https://api.census.gov/data/2015/acs/acs1/pumspr/geography.json (acs, acs1, pumspr) 2015.0
ACSPUMS1YPR2016 True NaN U.S. Census Bureau unidentified NaN 006:004 2019-11-22 11:59:25.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2016/acs/acs1/pumspr', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpo... The Public Use Microdata Sample (PUMS) for Puerto Rico (PR) contains a sample of responses to the Puerto Rico Community Survey (PRCS). The PRCS is similar to, but separate from, the American Commu... 006:07 public 2016 American Community Survey: 1-Year Estimates - Puerto Rico Public Use Microdata Sample True True NaN https://api.census.gov/data/2016/acs/acs1/pumspr/values.json https://api.census.gov/data/2016/acs/acs1/pumspr/groups.json https://api.census.gov/data/2016/acs/acs1/pumspr/examples.json https://api.census.gov/data/2016/acs/acs1/pumspr/tags.json https://api.census.gov/data/2016/acs/acs1/pumspr/variables.json https://api.census.gov/data/2016/acs/acs1/pumspr/geography.json (acs, acs1, pumspr) 2016.0
ACSPUMS1YPR2017 True NaN U.S. Census Bureau unidentified NaN 006:004 2019-11-22 11:59:29.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2017/acs/acs1/pumspr', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpo... The Public Use Microdata Sample (PUMS) for Puerto Rico (PR) contains a sample of responses to the Puerto Rico Community Survey (PRCS). The PRCS is similar to, but separate from, the American Commu... 006:07 public 2017 American Community Survey: 1-Year Estimates - Puerto Rico Public Use Microdata Sample True True NaN https://api.census.gov/data/2017/acs/acs1/pumspr/values.json https://api.census.gov/data/2017/acs/acs1/pumspr/groups.json https://api.census.gov/data/2017/acs/acs1/pumspr/examples.json https://api.census.gov/data/2017/acs/acs1/pumspr/tags.json https://api.census.gov/data/2017/acs/acs1/pumspr/variables.json https://api.census.gov/data/2017/acs/acs1/pumspr/geography.json (acs, acs1, pumspr) 2017.0
ACSPUMS1YPR2018 True NaN U.S. Census Bureau unidentified NaN 006:004 2019-11-22 11:59:33.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2018/acs/acs1/pumspr', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpo... The Public Use Microdata Sample (PUMS) for Puerto Rico (PR) contains a sample of responses to the Puerto Rico Community Survey (PRCS). The PRCS is similar to, but separate from, the American Commu... 006:07 public 2018 American Community Survey: 1-Year Estimates - Puerto Rico Public Use Microdata Sample True True NaN https://api.census.gov/data/2018/acs/acs1/pumspr/values.json https://api.census.gov/data/2018/acs/acs1/pumspr/groups.json https://api.census.gov/data/2018/acs/acs1/pumspr/examples.json https://api.census.gov/data/2018/acs/acs1/pumspr/tags.json https://api.census.gov/data/2018/acs/acs1/pumspr/variables.json https://api.census.gov/data/2018/acs/acs1/pumspr/geography.json (acs, acs1, pumspr) 2018.0
ACSPUMS1YPR2019 True NaN U.S. Census Bureau unidentified NaN 006:008 2020-06-16 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2019/acs/acs1/pumspr', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpo... The Public Use Microdata Sample (PUMS) for Puerto Rico (PR) contains a sample of responses to the Puerto Rico Community Survey (PRCS). The PRCS is similar to, but separate from, the American Commu... 006:07 public ACS 1-Year PUMS Puerto Rico True True NaN https://api.census.gov/data/2019/acs/acs1/pumspr/values.json https://api.census.gov/data/2019/acs/acs1/pumspr/groups.json https://api.census.gov/data/2019/acs/acs1/pumspr/examples.json https://api.census.gov/data/2019/acs/acs1/pumspr/tags.json https://api.census.gov/data/2019/acs/acs1/pumspr/variables.json https://api.census.gov/data/2019/acs/acs1/pumspr/geography.json (acs, acs1, pumspr) 2019.0
ACSPUMS5Y2009 True NaN U.S. Census Bureau unidentified NaN 006:004 2019-11-25 11:05:34.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2009/acs/acs5/pums', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) Public Use Microdata Sample (PUMS) contains a sample of responses to the ACS. The ACS PUMS dataset includes variables for nearly every question on the survey, a... 006:07 public 2005-2009 American Community Survey: 5-Year Estimates - Public Use Microdata Sample True True NaN https://api.census.gov/data/2009/acs/acs5/pums/values.json https://api.census.gov/data/2009/acs/acs5/pums/groups.json https://api.census.gov/data/2009/acs/acs5/pums/examples.json https://api.census.gov/data/2009/acs/acs5/pums/tags.json https://api.census.gov/data/2009/acs/acs5/pums/variables.json https://api.census.gov/data/2009/acs/acs5/pums/geography.json (acs, acs5, pums) 2009.0
ACSPUMS5Y2010 True NaN U.S. Census Bureau unidentified NaN 006:004 2019-11-25 11:05:59.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2010/acs/acs5/pums', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) Public Use Microdata Sample (PUMS) contains a sample of responses to the ACS. The ACS PUMS dataset includes variables for nearly every question on the survey, a... 006:07 public 2006-2010 American Community Survey: 5-Year Estimates - Public Use Microdata Sample True True NaN https://api.census.gov/data/2010/acs/acs5/pums/values.json https://api.census.gov/data/2010/acs/acs5/pums/groups.json https://api.census.gov/data/2010/acs/acs5/pums/examples.json https://api.census.gov/data/2010/acs/acs5/pums/tags.json https://api.census.gov/data/2010/acs/acs5/pums/variables.json https://api.census.gov/data/2010/acs/acs5/pums/geography.json (acs, acs5, pums) 2010.0
ACSPUMS5Y2011 True NaN U.S. Census Bureau unidentified NaN 006:004 2019-11-25 11:06:03.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2011/acs/acs5/pums', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) Public Use Microdata Sample (PUMS) contains a sample of responses to the ACS. The ACS PUMS dataset includes variables for nearly every question on the survey, a... 006:07 public 2007-2011 American Community Survey: 5-Year Estimates - Public Use Microdata Sample True True NaN https://api.census.gov/data/2011/acs/acs5/pums/values.json https://api.census.gov/data/2011/acs/acs5/pums/groups.json https://api.census.gov/data/2011/acs/acs5/pums/examples.json https://api.census.gov/data/2011/acs/acs5/pums/tags.json https://api.census.gov/data/2011/acs/acs5/pums/variables.json https://api.census.gov/data/2011/acs/acs5/pums/geography.json (acs, acs5, pums) 2011.0
ACSPUMS5Y2012 True NaN U.S. Census Bureau unidentified NaN 006:004 2019-11-25 11:06:08.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2012/acs/acs5/pums', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) Public Use Microdata Sample (PUMS) contains a sample of responses to the ACS. The ACS PUMS dataset includes variables for nearly every question on the survey, a... 006:07 public 2008-2012 American Community Survey: 5-Year Estimates - Public Use Microdata Sample True True NaN https://api.census.gov/data/2012/acs/acs5/pums/values.json https://api.census.gov/data/2012/acs/acs5/pums/groups.json https://api.census.gov/data/2012/acs/acs5/pums/examples.json https://api.census.gov/data/2012/acs/acs5/pums/tags.json https://api.census.gov/data/2012/acs/acs5/pums/variables.json https://api.census.gov/data/2012/acs/acs5/pums/geography.json (acs, acs5, pums) 2012.0
ACSPUMS5Y2013 True NaN U.S. Census Bureau unidentified NaN 006:004 2019-11-25 11:06:18.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2013/acs/acs5/pums', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) Public Use Microdata Sample (PUMS) contains a sample of responses to the ACS. The ACS PUMS dataset includes variables for nearly every question on the survey, a... 006:07 public 2009-2013 American Community Survey: 5-Year Estimates - Public Use Microdata Sample True True NaN https://api.census.gov/data/2013/acs/acs5/pums/values.json https://api.census.gov/data/2013/acs/acs5/pums/groups.json https://api.census.gov/data/2013/acs/acs5/pums/examples.json https://api.census.gov/data/2013/acs/acs5/pums/tags.json https://api.census.gov/data/2013/acs/acs5/pums/variables.json https://api.census.gov/data/2013/acs/acs5/pums/geography.json (acs, acs5, pums) 2013.0
ACSPUMS5Y2014 True NaN U.S. Census Bureau unidentified NaN 006:004 2019-11-25 11:06:23.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2014/acs/acs5/pums', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) Public Use Microdata Sample (PUMS) contains a sample of responses to the ACS. The ACS PUMS dataset includes variables for nearly every question on the survey, a... 006:07 public 2010-2014 American Community Survey: 5-Year Estimates - Public Use Microdata Sample True True NaN https://api.census.gov/data/2014/acs/acs5/pums/values.json https://api.census.gov/data/2014/acs/acs5/pums/groups.json https://api.census.gov/data/2014/acs/acs5/pums/examples.json https://api.census.gov/data/2014/acs/acs5/pums/tags.json https://api.census.gov/data/2014/acs/acs5/pums/variables.json https://api.census.gov/data/2014/acs/acs5/pums/geography.json (acs, acs5, pums) 2014.0
ACSPUMS5Y2015 True NaN U.S. Census Bureau unidentified NaN 006:004 2019-11-25 11:06:27.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2015/acs/acs5/pums', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) Public Use Microdata Sample (PUMS) contains a sample of responses to the ACS. The ACS PUMS dataset includes variables for nearly every question on the survey, a... 006:07 public 2011-2015 American Community Survey: 5-Year Estimates - Public Use Microdata Sample True True NaN https://api.census.gov/data/2015/acs/acs5/pums/values.json https://api.census.gov/data/2015/acs/acs5/pums/groups.json https://api.census.gov/data/2015/acs/acs5/pums/examples.json https://api.census.gov/data/2015/acs/acs5/pums/tags.json https://api.census.gov/data/2015/acs/acs5/pums/variables.json https://api.census.gov/data/2015/acs/acs5/pums/geography.json (acs, acs5, pums) 2015.0
ACSPUMS5Y2016 True NaN U.S. Census Bureau unidentified NaN 006:004 2019-11-25 11:06:31.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2016/acs/acs5/pums', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) Public Use Microdata Sample (PUMS) contains a sample of responses to the ACS. The ACS PUMS dataset includes variables for nearly every question on the survey, a... 006:07 public 2012-2016 American Community Survey: 5-Year Estimates - Public Use Microdata Sample True True NaN https://api.census.gov/data/2016/acs/acs5/pums/values.json https://api.census.gov/data/2016/acs/acs5/pums/groups.json https://api.census.gov/data/2016/acs/acs5/pums/examples.json https://api.census.gov/data/2016/acs/acs5/pums/tags.json https://api.census.gov/data/2016/acs/acs5/pums/variables.json https://api.census.gov/data/2016/acs/acs5/pums/geography.json (acs, acs5, pums) 2016.0
ACSPUMS5Y2017 True NaN U.S. Census Bureau unidentified NaN 006:004 2019-11-25 11:06:35.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2017/acs/acs5/pums', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) Public Use Microdata Sample (PUMS) contains a sample of responses to the ACS. The ACS PUMS dataset includes variables for nearly every question on the survey, a... 006:07 public 2013-2017 American Community Survey: 5-Year Estimates - Public Use Microdata Sample True True NaN https://api.census.gov/data/2017/acs/acs5/pums/values.json https://api.census.gov/data/2017/acs/acs5/pums/groups.json https://api.census.gov/data/2017/acs/acs5/pums/examples.json https://api.census.gov/data/2017/acs/acs5/pums/tags.json https://api.census.gov/data/2017/acs/acs5/pums/variables.json https://api.census.gov/data/2017/acs/acs5/pums/geography.json (acs, acs5, pums) 2017.0
ACSPUMS5Y2018 True NaN U.S. Census Bureau unidentified NaN 006:008 2019-12-19 11:03:12.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2018/acs/acs5/pums', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) Public Use Microdata Sample (PUMS) contains a sample of responses to the ACS. The ACS PUMS dataset includes variables for nearly every question on the survey, a... 006:07 public 2014-2018 American Community Survey: 5-Year Estimates - Public Use Microdata Sample True True NaN https://api.census.gov/data/2018/acs/acs5/pums/values.json https://api.census.gov/data/2018/acs/acs5/pums/groups.json https://api.census.gov/data/2018/acs/acs5/pums/examples.json https://api.census.gov/data/2018/acs/acs5/pums/tags.json https://api.census.gov/data/2018/acs/acs5/pums/variables.json https://api.census.gov/data/2018/acs/acs5/pums/geography.json (acs, acs5, pums) 2018.0
ACSPUMS5Y2019 True NaN U.S. Census Bureau unidentified NaN 006:004 2020-11-24 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2019/acs/acs5/pums', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) Public Use Microdata Sample (PUMS) contains a sample of responses to the ACS. The ACS PUMS dataset includes variables for nearly every question on the survey, a... 006:07 public ACS 5-Year PUMS True True NaN https://api.census.gov/data/2019/acs/acs5/pums/values.json https://api.census.gov/data/2019/acs/acs5/pums/groups.json https://api.census.gov/data/2019/acs/acs5/pums/examples.json https://api.census.gov/data/2019/acs/acs5/pums/tags.json https://api.census.gov/data/2019/acs/acs5/pums/variables.json https://api.census.gov/data/2019/acs/acs5/pums/geography.json (acs, acs5, pums) 2019.0
ACSPUMS5YPR2009 True NaN U.S. Census Bureau unidentified NaN 006:004 2019-11-25 11:42:53.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2009/acs/acs5/pumspr', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpo... The Public Use Microdata Sample (PUMS) for Puerto Rico (PR) contains a sample of responses to the Puerto Rico Community Survey (PRCS). The PRCS is similar to, but separate from, the American Commu... 006:07 public 2005-2009 American Community Survey: 5-Year Estimates - Puerto Rico Public Use Microdata Sample True True NaN https://api.census.gov/data/2009/acs/acs5/pumspr/values.json https://api.census.gov/data/2009/acs/acs5/pumspr/groups.json https://api.census.gov/data/2009/acs/acs5/pumspr/examples.json https://api.census.gov/data/2009/acs/acs5/pumspr/tags.json https://api.census.gov/data/2009/acs/acs5/pumspr/variables.json https://api.census.gov/data/2009/acs/acs5/pumspr/geography.json (acs, acs5, pumspr) 2009.0
ACSPUMS5YPR2010 True NaN U.S. Census Bureau unidentified NaN 006:004 2019-11-25 11:42:59.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2010/acs/acs5/pumspr', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpo... The Public Use Microdata Sample (PUMS) for Puerto Rico (PR) contains a sample of responses to the Puerto Rico Community Survey (PRCS). The PRCS is similar to, but separate from, the American Commu... 006:07 public 2006-2010 American Community Survey: 5-Year Estimates - Puerto Rico Public Use Microdata Sample True True NaN https://api.census.gov/data/2010/acs/acs5/pumspr/values.json https://api.census.gov/data/2010/acs/acs5/pumspr/groups.json https://api.census.gov/data/2010/acs/acs5/pumspr/examples.json https://api.census.gov/data/2010/acs/acs5/pumspr/tags.json https://api.census.gov/data/2010/acs/acs5/pumspr/variables.json https://api.census.gov/data/2010/acs/acs5/pumspr/geography.json (acs, acs5, pumspr) 2010.0
ACSPUMS5YPR2011 True NaN U.S. Census Bureau unidentified NaN 006:004 2019-11-25 11:43:03.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2011/acs/acs5/pumspr', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpo... The Public Use Microdata Sample (PUMS) for Puerto Rico (PR) contains a sample of responses to the Puerto Rico Community Survey (PRCS). The PRCS is similar to, but separate from, the American Commu... 006:07 public 2007-2011 American Community Survey: 5-Year Estimates - Puerto Rico Public Use Microdata Sample True True NaN https://api.census.gov/data/2011/acs/acs5/pumspr/values.json https://api.census.gov/data/2011/acs/acs5/pumspr/groups.json https://api.census.gov/data/2011/acs/acs5/pumspr/examples.json https://api.census.gov/data/2011/acs/acs5/pumspr/tags.json https://api.census.gov/data/2011/acs/acs5/pumspr/variables.json https://api.census.gov/data/2011/acs/acs5/pumspr/geography.json (acs, acs5, pumspr) 2011.0
ACSPUMS5YPR2012 True NaN U.S. Census Bureau unidentified NaN 006:004 2019-11-25 11:43:08.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2012/acs/acs5/pumspr', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpo... The Public Use Microdata Sample (PUMS) for Puerto Rico (PR) contains a sample of responses to the Puerto Rico Community Survey (PRCS). The PRCS is similar to, but separate from, the American Commu... 006:07 public 2008-2012 American Community Survey: 5-Year Estimates - Puerto Rico Public Use Microdata Sample True True NaN https://api.census.gov/data/2012/acs/acs5/pumspr/values.json https://api.census.gov/data/2012/acs/acs5/pumspr/groups.json https://api.census.gov/data/2012/acs/acs5/pumspr/examples.json https://api.census.gov/data/2012/acs/acs5/pumspr/tags.json https://api.census.gov/data/2012/acs/acs5/pumspr/variables.json https://api.census.gov/data/2012/acs/acs5/pumspr/geography.json (acs, acs5, pumspr) 2012.0
ACSPUMS5YPR2013 True NaN U.S. Census Bureau unidentified NaN 006:004 2019-11-25 11:43:12.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2013/acs/acs5/pumspr', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpo... The Public Use Microdata Sample (PUMS) for Puerto Rico (PR) contains a sample of responses to the Puerto Rico Community Survey (PRCS). The PRCS is similar to, but separate from, the American Commu... 006:07 public 2009-2013 American Community Survey: 5-Year Estimates - Puerto Rico Public Use Microdata Sample True True NaN https://api.census.gov/data/2013/acs/acs5/pumspr/values.json https://api.census.gov/data/2013/acs/acs5/pumspr/groups.json https://api.census.gov/data/2013/acs/acs5/pumspr/examples.json https://api.census.gov/data/2013/acs/acs5/pumspr/tags.json https://api.census.gov/data/2013/acs/acs5/pumspr/variables.json https://api.census.gov/data/2013/acs/acs5/pumspr/geography.json (acs, acs5, pumspr) 2013.0
ACSPUMS5YPR2014 True NaN U.S. Census Bureau unidentified NaN 006:004 2019-11-25 11:43:15.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2014/acs/acs5/pumspr', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpo... The Public Use Microdata Sample (PUMS) for Puerto Rico (PR) contains a sample of responses to the Puerto Rico Community Survey (PRCS). The PRCS is similar to, but separate from, the American Commu... 006:07 public 2010-2014 American Community Survey: 5-Year Estimates - Puerto Rico Public Use Microdata Sample True True NaN https://api.census.gov/data/2014/acs/acs5/pumspr/values.json https://api.census.gov/data/2014/acs/acs5/pumspr/groups.json https://api.census.gov/data/2014/acs/acs5/pumspr/examples.json https://api.census.gov/data/2014/acs/acs5/pumspr/tags.json https://api.census.gov/data/2014/acs/acs5/pumspr/variables.json https://api.census.gov/data/2014/acs/acs5/pumspr/geography.json (acs, acs5, pumspr) 2014.0
ACSPUMS5YPR2015 True NaN U.S. Census Bureau unidentified NaN 006:004 2019-11-25 11:43:19.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2015/acs/acs5/pumspr', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpo... The Public Use Microdata Sample (PUMS) for Puerto Rico (PR) contains a sample of responses to the Puerto Rico Community Survey (PRCS). The PRCS is similar to, but separate from, the American Commu... 006:07 public 2011-2015 American Community Survey: 5-Year Estimates - Puerto Rico Public Use Microdata Sample True True NaN https://api.census.gov/data/2015/acs/acs5/pumspr/values.json https://api.census.gov/data/2015/acs/acs5/pumspr/groups.json https://api.census.gov/data/2015/acs/acs5/pumspr/examples.json https://api.census.gov/data/2015/acs/acs5/pumspr/tags.json https://api.census.gov/data/2015/acs/acs5/pumspr/variables.json https://api.census.gov/data/2015/acs/acs5/pumspr/geography.json (acs, acs5, pumspr) 2015.0
ACSPUMS5YPR2016 True NaN U.S. Census Bureau unidentified NaN 006:004 2019-11-25 11:43:23.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2016/acs/acs5/pumspr', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpo... The Public Use Microdata Sample (PUMS) for Puerto Rico (PR) contains a sample of responses to the Puerto Rico Community Survey (PRCS). The PRCS is similar to, but separate from, the American Commu... 006:07 public 2012-2016 American Community Survey: 5-Year Estimates - Puerto Rico Public Use Microdata Sample True True NaN https://api.census.gov/data/2016/acs/acs5/pumspr/values.json https://api.census.gov/data/2016/acs/acs5/pumspr/groups.json https://api.census.gov/data/2016/acs/acs5/pumspr/examples.json https://api.census.gov/data/2016/acs/acs5/pumspr/tags.json https://api.census.gov/data/2016/acs/acs5/pumspr/variables.json https://api.census.gov/data/2016/acs/acs5/pumspr/geography.json (acs, acs5, pumspr) 2016.0
ACSPUMS5YPR2017 True NaN U.S. Census Bureau unidentified NaN 006:004 2019-11-25 11:43:27.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2017/acs/acs5/pumspr', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpo... The Public Use Microdata Sample (PUMS) for Puerto Rico (PR) contains a sample of responses to the Puerto Rico Community Survey (PRCS). The PRCS is similar to, but separate from, the American Commu... 006:07 public 2013-2017 American Community Survey: 5-Year Estimates - Puerto Rico Public Use Microdata Sample True True NaN https://api.census.gov/data/2017/acs/acs5/pumspr/values.json https://api.census.gov/data/2017/acs/acs5/pumspr/groups.json https://api.census.gov/data/2017/acs/acs5/pumspr/examples.json https://api.census.gov/data/2017/acs/acs5/pumspr/tags.json https://api.census.gov/data/2017/acs/acs5/pumspr/variables.json https://api.census.gov/data/2017/acs/acs5/pumspr/geography.json (acs, acs5, pumspr) 2017.0
ACSPUMS5YPR2018 True NaN U.S. Census Bureau unidentified NaN 006:008 2019-12-19 11:03:04.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2018/acs/acs5/pumspr', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpo... The Public Use Microdata Sample (PUMS) for Puerto Rico (PR) contains a sample of responses to the Puerto Rico Community Survey (PRCS). The PRCS is similar to, but separate from, the American Commu... 006:07 public 2014-2018 American Community Survey: 5-Year Estimates - Puerto Rico Public Use Microdata Sample True True NaN https://api.census.gov/data/2018/acs/acs5/pumspr/values.json https://api.census.gov/data/2018/acs/acs5/pumspr/groups.json https://api.census.gov/data/2018/acs/acs5/pumspr/examples.json https://api.census.gov/data/2018/acs/acs5/pumspr/tags.json https://api.census.gov/data/2018/acs/acs5/pumspr/variables.json https://api.census.gov/data/2018/acs/acs5/pumspr/geography.json (acs, acs5, pumspr) 2018.0
ACSPUMS5YPR2019 True NaN U.S. Census Bureau unidentified NaN 006:008 2020-11-24 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2019/acs/acs5/pumspr', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpo... The Public Use Microdata Sample (PUMS) for Puerto Rico (PR) contains a sample of responses to the Puerto Rico Community Survey (PRCS). The PRCS is similar to, but separate from, the American Commu... 006:07 public ACS 5-Year PUMS Puerto Rico True True NaN https://api.census.gov/data/2019/acs/acs5/pumspr/values.json https://api.census.gov/data/2019/acs/acs5/pumspr/groups.json https://api.census.gov/data/2019/acs/acs5/pumspr/examples.json https://api.census.gov/data/2019/acs/acs5/pumspr/tags.json https://api.census.gov/data/2019/acs/acs5/pumspr/variables.json https://api.census.gov/data/2019/acs/acs5/pumspr/geography.json (acs, acs5, pumspr) 2019.0
ACSSE2014 NaN NaN U.S. Census Bureau unidentified United States 006:004 2018-07-06 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2014/acs/acsse', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) is a nationwide survey designed to provide communities a fresh look at how they are changing. The ACS replaced the decennial census long form in 2010 and therea... NaN NaN ACS 1-Year Supplemental Estimates True True True https://api.census.gov/data/2014/acs/acsse/values.json https://api.census.gov/data/2014/acs/acsse/groups.json https://api.census.gov/data/2014/acs/acsse/examples.json https://api.census.gov/data/2014/acs/acsse/tags.json https://api.census.gov/data/2014/acs/acsse/variables.json https://api.census.gov/data/2014/acs/acsse/geography.json (acs, acsse) 2014.0
ACSSE2015 NaN NaN U.S. Census Bureau unidentified United States 006:004 2018-07-06 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2015/acs/acsse', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) is a nationwide survey designed to provide communities a fresh look at how they are changing. The ACS replaced the decennial census long form in 2010 and therea... NaN NaN ACS 1-Year Supplemental Estimates True True True https://api.census.gov/data/2015/acs/acsse/values.json https://api.census.gov/data/2015/acs/acsse/groups.json https://api.census.gov/data/2015/acs/acsse/examples.json https://api.census.gov/data/2015/acs/acsse/tags.json https://api.census.gov/data/2015/acs/acsse/variables.json https://api.census.gov/data/2015/acs/acsse/geography.json (acs, acsse) 2015.0
ACSSE2016 NaN NaN U.S. Census Bureau unidentified United States 006:004 2017-11-20 () {'fn': 'American Community Survey Office', 'hasEmail': 'acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2016/acs/acsse', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) is a nationwide survey designed to provide communities a fresh look at how they are changing. The ACS replaced the decennial census long form in 2010 and therea... NaN NaN ACS 1-Year Supplemental Estimates True True True https://api.census.gov/data/2016/acs/acsse/values.json https://api.census.gov/data/2016/acs/acsse/groups.json https://api.census.gov/data/2016/acs/acsse/examples.json https://api.census.gov/data/2016/acs/acsse/tags.json https://api.census.gov/data/2016/acs/acsse/variables.json https://api.census.gov/data/2016/acs/acsse/geography.json (acs, acsse) 2016.0
ACSSE2017 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2018-10-18 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2017/acs/acsse', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) is a nationwide survey designed to provide communities a fresh look at how they are changing. The ACS replaced the decennial census long form in 2010 and therea... NaN NaN ACS 1-Year Supplemental Estimates True True True https://api.census.gov/data/2017/acs/acsse/values.json https://api.census.gov/data/2017/acs/acsse/groups.json https://api.census.gov/data/2017/acs/acsse/examples.json https://api.census.gov/data/2017/acs/acsse/tags.json https://api.census.gov/data/2017/acs/acsse/variables.json https://api.census.gov/data/2017/acs/acsse/geography.json (acs, acsse) 2017.0
ACSSE2018 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2019-10-10 07:41:48.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2018/acs/acsse', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) is a nationwide survey designed to provide communities a fresh look at how they are changing. The ACS replaced the decennial census long form in 2010 and therea... NaN NaN ACS 1-Year Supplemental Estimates True True True https://api.census.gov/data/2018/acs/acsse/values.json https://api.census.gov/data/2018/acs/acsse/groups.json https://api.census.gov/data/2018/acs/acsse/examples.json https://api.census.gov/data/2018/acs/acsse/tags.json https://api.census.gov/data/2018/acs/acsse/variables.json https://api.census.gov/data/2018/acs/acsse/geography.json (acs, acsse) 2018.0
ACSSE2019 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2020-04-03 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:Acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2019/acs/acsse', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) is a nationwide survey designed to provide communities a fresh look at how they are changing. The ACS replaced the decennial census long form in 2010 and therea... 006:07 public American Community Survey: Supplemental Estimates: ACS 1-Year Supplemental Estimates True True True https://api.census.gov/data/2019/acs/acsse/values.json https://api.census.gov/data/2019/acs/acsse/groups.json https://api.census.gov/data/2019/acs/acsse/examples.json https://api.census.gov/data/2019/acs/acsse/tags.json https://api.census.gov/data/2019/acs/acsse/variables.json https://api.census.gov/data/2019/acs/acsse/geography.json (acs, acsse) 2019.0
ACSSF5Y2009 NaN NaN U.S. Census Bureau July 1, 2005 - Current United States 006:004 2017-05-23 (Income, Marital, Poverty) {'fn': 'American Community Survey Office', 'hasEmail': 'acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2009/acs5', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public 2005-2009 American Community Survey 5-Year Estimates True NaN True https://api.census.gov/data/2009/acs5/values.json https://api.census.gov/data/2009/acs5/groups.json https://api.census.gov/data/2009/acs5/examples.json https://api.census.gov/data/2009/acs5/tags.json https://api.census.gov/data/2009/acs5/variables.json https://api.census.gov/data/2009/acs5/geography.json (acs5,) 2009.0
ACSSPP1Y2008 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2020-03-02 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2008/acs/acs1/spp', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... NaN NaN American Community Survey: 1-Year Estimates: Selected Population Profiles 1-Year True True True https://api.census.gov/data/2008/acs/acs1/spp/values.json https://api.census.gov/data/2008/acs/acs1/spp/groups.json https://api.census.gov/data/2008/acs/acs1/spp/examples.json https://api.census.gov/data/2008/acs/acs1/spp/tags.json https://api.census.gov/data/2008/acs/acs1/spp/variables.json https://api.census.gov/data/2008/acs/acs1/spp/geography.json (acs, acs1, spp) 2008.0
ACSSPP1Y2009 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2020-03-02 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2009/acs/acs1/spp', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... NaN NaN American Community Survey: 1-Year Estimates: Selected Population Profiles 1-Year True True True https://api.census.gov/data/2009/acs/acs1/spp/values.json https://api.census.gov/data/2009/acs/acs1/spp/groups.json https://api.census.gov/data/2009/acs/acs1/spp/examples.json https://api.census.gov/data/2009/acs/acs1/spp/tags.json https://api.census.gov/data/2009/acs/acs1/spp/variables.json https://api.census.gov/data/2009/acs/acs1/spp/geography.json (acs, acs1, spp) 2009.0
ACSSPP1Y2010 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2020-02-13 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2010/acs/acs1/spp', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} Selected Population Profiles provide broad social, economic, and housing profiles for a large number of race, ethnic, ancestry, and country/region of birth groups. The data are presented as popula... NaN NaN American Community Survey: 1-Year Estimates: Selected Population Profiles 1-Year True True True https://api.census.gov/data/2010/acs/acs1/spp/values.json https://api.census.gov/data/2010/acs/acs1/spp/groups.json https://api.census.gov/data/2010/acs/acs1/spp/examples.json https://api.census.gov/data/2010/acs/acs1/spp/tags.json https://api.census.gov/data/2010/acs/acs1/spp/variables.json https://api.census.gov/data/2010/acs/acs1/spp/geography.json (acs, acs1, spp) 2010.0
ACSSPP1Y2011 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2020-02-14 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2011/acs/acs1/spp', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} Selected Population Profiles provide broad social, economic, and housing profiles for a large number of race, ethnic, ancestry, and country/region of birth groups. The data are presented as popula... NaN NaN American Community Survey: 1-Year Estimates: Selected Population Profiles 1-Year True True True https://api.census.gov/data/2011/acs/acs1/spp/values.json https://api.census.gov/data/2011/acs/acs1/spp/groups.json https://api.census.gov/data/2011/acs/acs1/spp/examples.json https://api.census.gov/data/2011/acs/acs1/spp/tags.json https://api.census.gov/data/2011/acs/acs1/spp/variables.json https://api.census.gov/data/2011/acs/acs1/spp/geography.json (acs, acs1, spp) 2011.0
ACSSPP1Y2012 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2020-02-18 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2012/acs/acs1/spp', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} Selected Population Profiles provide broad social, economic, and housing profiles for a large number of race, ethnic, ancestry, and country/region of birth groups. The data are presented as popula... NaN NaN American Community Survey: 1-Year Estimates: Selected Population Profiles 1-Year True True True https://api.census.gov/data/2012/acs/acs1/spp/values.json https://api.census.gov/data/2012/acs/acs1/spp/groups.json https://api.census.gov/data/2012/acs/acs1/spp/examples.json https://api.census.gov/data/2012/acs/acs1/spp/tags.json https://api.census.gov/data/2012/acs/acs1/spp/variables.json https://api.census.gov/data/2012/acs/acs1/spp/geography.json (acs, acs1, spp) 2012.0
ACSSPP1Y2013 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2020-02-11 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2013/acs/acs1/spp', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} Selected Population Profiles provide broad social, economic, and housing profiles for a large number of race, ethnic, ancestry, and country/region of birth groups. The data are presented as popula... NaN NaN American Community Survey: 1-Year Estimates: Selected Population Profiles 1-Year True True True https://api.census.gov/data/2013/acs/acs1/spp/values.json https://api.census.gov/data/2013/acs/acs1/spp/groups.json https://api.census.gov/data/2013/acs/acs1/spp/examples.json https://api.census.gov/data/2013/acs/acs1/spp/tags.json https://api.census.gov/data/2013/acs/acs1/spp/variables.json https://api.census.gov/data/2013/acs/acs1/spp/geography.json (acs, acs1, spp) 2013.0
ACSSPP1Y2014 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2020-02-11 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2014/acs/acs1/spp', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} Selected Population Profiles provide broad social, economic, and housing profiles for a large number of race, ethnic, ancestry, and country/region of birth groups. The data are presented as popula... NaN NaN American Community Survey: 1-Year Estimates: Selected Population Profiles 1-Year True True True https://api.census.gov/data/2014/acs/acs1/spp/values.json https://api.census.gov/data/2014/acs/acs1/spp/groups.json https://api.census.gov/data/2014/acs/acs1/spp/examples.json https://api.census.gov/data/2014/acs/acs1/spp/tags.json https://api.census.gov/data/2014/acs/acs1/spp/variables.json https://api.census.gov/data/2014/acs/acs1/spp/geography.json (acs, acs1, spp) 2014.0
ACSSPP1Y2015 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2020-02-11 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2015/acs/acs1/spp', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} Selected Population Profiles provide broad social, economic, and housing profiles for a large number of race, ethnic, ancestry, and country/region of birth groups. The data are presented as popula... NaN NaN American Community Survey: 1-Year Estimates: Selected Population Profiles 1-Year True True True https://api.census.gov/data/2015/acs/acs1/spp/values.json https://api.census.gov/data/2015/acs/acs1/spp/groups.json https://api.census.gov/data/2015/acs/acs1/spp/examples.json https://api.census.gov/data/2015/acs/acs1/spp/tags.json https://api.census.gov/data/2015/acs/acs1/spp/variables.json https://api.census.gov/data/2015/acs/acs1/spp/geography.json (acs, acs1, spp) 2015.0
ACSSPP1Y2016 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2018-09-18 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2016/acs/acs1/spp', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} Selected Population Profiles provide broad social, economic, and housing profiles for a large number of race, ethnic, ancestry, and country/region of birth groups. The data are presented as popul... NaN NaN ACS 1-Year Selected Population Profiles True True True https://api.census.gov/data/2016/acs/acs1/spp/values.json https://api.census.gov/data/2016/acs/acs1/spp/groups.json https://api.census.gov/data/2016/acs/acs1/spp/examples.json https://api.census.gov/data/2016/acs/acs1/spp/tags.json https://api.census.gov/data/2016/acs/acs1/spp/variables.json https://api.census.gov/data/2016/acs/acs1/spp/geography.json (acs, acs1, spp) 2016.0
ACSSPP1Y2017 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2018-09-17 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2017/acs/acs1/spp', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} Selected Population Profiles provide broad social, economic, and housing profiles for a large number of race, ethnic, ancestry, and country/region of birth groups. The data are presented as popul... NaN NaN ACS 1-Year Selected Population Profiles True True True https://api.census.gov/data/2017/acs/acs1/spp/values.json https://api.census.gov/data/2017/acs/acs1/spp/groups.json https://api.census.gov/data/2017/acs/acs1/spp/examples.json https://api.census.gov/data/2017/acs/acs1/spp/tags.json https://api.census.gov/data/2017/acs/acs1/spp/variables.json https://api.census.gov/data/2017/acs/acs1/spp/geography.json (acs, acs1, spp) 2017.0
ACSSPP1Y2018 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2019-07-15 09:36:36.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2018/acs/acs1/spp', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} Selected Population Profiles provide broad social, economic, and housing profiles for a large number of race, ethnic, ancestry, and country/region of birth groups. The data are presented as popula... NaN NaN American Community Survey: 1-Year Estimates: Selected Population Profiles 1-Year True True True https://api.census.gov/data/2018/acs/acs1/spp/values.json https://api.census.gov/data/2018/acs/acs1/spp/groups.json https://api.census.gov/data/2018/acs/acs1/spp/examples.json https://api.census.gov/data/2018/acs/acs1/spp/tags.json https://api.census.gov/data/2018/acs/acs1/spp/variables.json https://api.census.gov/data/2018/acs/acs1/spp/geography.json (acs, acs1, spp) 2018.0
ACSSPP1Y2019 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2020-04-03 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:Acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2019/acs/acs1/spp', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} Selected Population Profiles provide broad social, economic, and housing profiles for a large number of race, ethnic, ancestry, and country/region of birth groups. The data are presented as popula... NaN NaN American Community Survey: 1-Year Estimates: Selected Population Profiles 1-Year True True True https://api.census.gov/data/2019/acs/acs1/spp/values.json https://api.census.gov/data/2019/acs/acs1/spp/groups.json https://api.census.gov/data/2019/acs/acs1/spp/examples.json https://api.census.gov/data/2019/acs/acs1/spp/tags.json https://api.census.gov/data/2019/acs/acs1/spp/variables.json https://api.census.gov/data/2019/acs/acs1/spp/geography.json (acs, acs1, spp) 2019.0
ACSSPP3Y2009 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2020-03-02 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2009/acs/acs3/spp', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... NaN NaN American Community Survey: 3-Year Estimates: Selected Population Profiles 3-Year True True True https://api.census.gov/data/2009/acs/acs3/spp/values.json https://api.census.gov/data/2009/acs/acs3/spp/groups.json https://api.census.gov/data/2009/acs/acs3/spp/examples.json https://api.census.gov/data/2009/acs/acs3/spp/tags.json https://api.census.gov/data/2009/acs/acs3/spp/variables.json https://api.census.gov/data/2009/acs/acs3/spp/geography.json (acs, acs3, spp) 2009.0
ACSSPP3Y2010 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2020-03-04 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2010/acs/acs3/spp', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... NaN NaN American Community Survey: 3-Year Estimates: Selected Population Profiles 3-Year True True True https://api.census.gov/data/2010/acs/acs3/spp/values.json https://api.census.gov/data/2010/acs/acs3/spp/groups.json https://api.census.gov/data/2010/acs/acs3/spp/examples.json https://api.census.gov/data/2010/acs/acs3/spp/tags.json https://api.census.gov/data/2010/acs/acs3/spp/variables.json https://api.census.gov/data/2010/acs/acs3/spp/geography.json (acs, acs3, spp) 2010.0
ACSSPP3Y2011 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2020-02-18 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2011/acs/acs3/spp', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... NaN NaN American Community Survey: 3-Year Estimates: Selected Population Profiles 3-Year True True True https://api.census.gov/data/2011/acs/acs3/spp/values.json https://api.census.gov/data/2011/acs/acs3/spp/groups.json https://api.census.gov/data/2011/acs/acs3/spp/examples.json https://api.census.gov/data/2011/acs/acs3/spp/tags.json https://api.census.gov/data/2011/acs/acs3/spp/variables.json https://api.census.gov/data/2011/acs/acs3/spp/geography.json (acs, acs3, spp) 2011.0
ACSSPP3Y2012 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2020-02-18 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2012/acs/acs3/spp', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... NaN NaN American Community Survey: 3-Year Estimates: Selected Population Profiles 3-Year True True True https://api.census.gov/data/2012/acs/acs3/spp/values.json https://api.census.gov/data/2012/acs/acs3/spp/groups.json https://api.census.gov/data/2012/acs/acs3/spp/examples.json https://api.census.gov/data/2012/acs/acs3/spp/tags.json https://api.census.gov/data/2012/acs/acs3/spp/variables.json https://api.census.gov/data/2012/acs/acs3/spp/geography.json (acs, acs3, spp) 2012.0
ACSSPP3Y2013 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2020-02-18 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2013/acs/acs3/spp', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... NaN NaN American Community Survey: 3-Year Estimates: Selected Population Profiles 3-Year True True True https://api.census.gov/data/2013/acs/acs3/spp/values.json https://api.census.gov/data/2013/acs/acs3/spp/groups.json https://api.census.gov/data/2013/acs/acs3/spp/examples.json https://api.census.gov/data/2013/acs/acs3/spp/tags.json https://api.census.gov/data/2013/acs/acs3/spp/variables.json https://api.census.gov/data/2013/acs/acs3/spp/geography.json (acs, acs3, spp) 2013.0
ACSST1Y2010 NaN NaN U.S. Census Bureau unidentified United States 006:004 2018-07-05 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2010/acs/acs1/subject', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endp... The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... NaN NaN ACS 1-Year Subject Tables True True True https://api.census.gov/data/2010/acs/acs1/subject/values.json https://api.census.gov/data/2010/acs/acs1/subject/groups.json https://api.census.gov/data/2010/acs/acs1/subject/examples.json https://api.census.gov/data/2010/acs/acs1/subject/tags.json https://api.census.gov/data/2010/acs/acs1/subject/variables.json https://api.census.gov/data/2010/acs/acs1/subject/geography.json (acs, acs1, subject) 2010.0
ACSST1Y2011 NaN NaN U.S. Census Bureau unidentified United States 006:004 2018-09-18 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2011/acs/acs1/subject', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endp... The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... NaN NaN ACS 1-Year Subject Tables True True True https://api.census.gov/data/2011/acs/acs1/subject/values.json https://api.census.gov/data/2011/acs/acs1/subject/groups.json https://api.census.gov/data/2011/acs/acs1/subject/examples.json https://api.census.gov/data/2011/acs/acs1/subject/tags.json https://api.census.gov/data/2011/acs/acs1/subject/variables.json https://api.census.gov/data/2011/acs/acs1/subject/geography.json (acs, acs1, subject) 2011.0
ACSST1Y2012 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2018-07-05 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2012/acs/acs1/subject', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endp... The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public ACS 1-Year Subject Tables True True True https://api.census.gov/data/2012/acs/acs1/subject/values.json https://api.census.gov/data/2012/acs/acs1/subject/groups.json https://api.census.gov/data/2012/acs/acs1/subject/examples.json https://api.census.gov/data/2012/acs/acs1/subject/tags.json https://api.census.gov/data/2012/acs/acs1/subject/variables.json https://api.census.gov/data/2012/acs/acs1/subject/geography.json (acs, acs1, subject) 2012.0
ACSST1Y2013 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2018-07-05 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2013/acs/acs1/subject', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endp... The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public ACS 1-Year Subject Tables True True True https://api.census.gov/data/2013/acs/acs1/subject/values.json https://api.census.gov/data/2013/acs/acs1/subject/groups.json https://api.census.gov/data/2013/acs/acs1/subject/examples.json https://api.census.gov/data/2013/acs/acs1/subject/tags.json https://api.census.gov/data/2013/acs/acs1/subject/variables.json https://api.census.gov/data/2013/acs/acs1/subject/geography.json (acs, acs1, subject) 2013.0
ACSST1Y2014 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2018-06-20 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2014/acs/acs1/subject', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endp... The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public ACS 1-Year Subject Tables True True True https://api.census.gov/data/2014/acs/acs1/subject/values.json https://api.census.gov/data/2014/acs/acs1/subject/groups.json https://api.census.gov/data/2014/acs/acs1/subject/examples.json https://api.census.gov/data/2014/acs/acs1/subject/tags.json https://api.census.gov/data/2014/acs/acs1/subject/variables.json https://api.census.gov/data/2014/acs/acs1/subject/geography.json (acs, acs1, subject) 2014.0
ACSST1Y2015 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2018-06-20 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2015/acs/acs1/subject', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endp... The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public ACS 1-Year Subject Tables True True True https://api.census.gov/data/2015/acs/acs1/subject/values.json https://api.census.gov/data/2015/acs/acs1/subject/groups.json https://api.census.gov/data/2015/acs/acs1/subject/examples.json https://api.census.gov/data/2015/acs/acs1/subject/tags.json https://api.census.gov/data/2015/acs/acs1/subject/variables.json https://api.census.gov/data/2015/acs/acs1/subject/geography.json (acs, acs1, subject) 2015.0
ACSST1Y2016 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2018-06-20 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2016/acs/acs1/subject', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endp... The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public ACS 1-Year Subject Tables True True True https://api.census.gov/data/2016/acs/acs1/subject/values.json https://api.census.gov/data/2016/acs/acs1/subject/groups.json https://api.census.gov/data/2016/acs/acs1/subject/examples.json https://api.census.gov/data/2016/acs/acs1/subject/tags.json https://api.census.gov/data/2016/acs/acs1/subject/variables.json https://api.census.gov/data/2016/acs/acs1/subject/geography.json (acs, acs1, subject) 2016.0
ACSST1Y2017 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2018-09-06 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2017/acs/acs1/subject', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endp... The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public ACS 1-Year Subject Tables True True True https://api.census.gov/data/2017/acs/acs1/subject/values.json https://api.census.gov/data/2017/acs/acs1/subject/groups.json https://api.census.gov/data/2017/acs/acs1/subject/examples.json https://api.census.gov/data/2017/acs/acs1/subject/tags.json https://api.census.gov/data/2017/acs/acs1/subject/variables.json https://api.census.gov/data/2017/acs/acs1/subject/geography.json (acs, acs1, subject) 2017.0
ACSST1Y2018 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2019-07-15 09:36:47.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2018/acs/acs1/subject', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endp... The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public ACS 1-Year Subject Tables True True True https://api.census.gov/data/2018/acs/acs1/subject/values.json https://api.census.gov/data/2018/acs/acs1/subject/groups.json https://api.census.gov/data/2018/acs/acs1/subject/examples.json https://api.census.gov/data/2018/acs/acs1/subject/tags.json https://api.census.gov/data/2018/acs/acs1/subject/variables.json https://api.census.gov/data/2018/acs/acs1/subject/geography.json (acs, acs1, subject) 2018.0
ACSST1Y2019 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2020-04-03 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:Acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2019/acs/acs1/subject', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endp... The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... NaN NaN American Community Survey: 1-Year Estimates: Subject Tables 1-Year True True True https://api.census.gov/data/2019/acs/acs1/subject/values.json https://api.census.gov/data/2019/acs/acs1/subject/groups.json https://api.census.gov/data/2019/acs/acs1/subject/examples.json https://api.census.gov/data/2019/acs/acs1/subject/tags.json https://api.census.gov/data/2019/acs/acs1/subject/variables.json https://api.census.gov/data/2019/acs/acs1/subject/geography.json (acs, acs1, subject) 2019.0
ACSST3Y2010 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2020-02-05 15:59:41.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2010/acs/acs3/subject', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endp... The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... NaN NaN American Community Survey: 3-Year Estimates: Subject Tables 3-Year True True True https://api.census.gov/data/2010/acs/acs3/subject/values.json https://api.census.gov/data/2010/acs/acs3/subject/groups.json https://api.census.gov/data/2010/acs/acs3/subject/examples.json https://api.census.gov/data/2010/acs/acs3/subject/tags.json https://api.census.gov/data/2010/acs/acs3/subject/variables.json https://api.census.gov/data/2010/acs/acs3/subject/geography.json (acs, acs3, subject) 2010.0
ACSST3Y2011 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2020-02-10 10:38:37.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2011/acs/acs3/subject', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endp... The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... NaN NaN American Community Survey: 3-Year Estimates: Subject Tables 3-Year True True True https://api.census.gov/data/2011/acs/acs3/subject/values.json https://api.census.gov/data/2011/acs/acs3/subject/groups.json https://api.census.gov/data/2011/acs/acs3/subject/examples.json https://api.census.gov/data/2011/acs/acs3/subject/tags.json https://api.census.gov/data/2011/acs/acs3/subject/variables.json https://api.census.gov/data/2011/acs/acs3/subject/geography.json (acs, acs3, subject) 2011.0
ACSST3Y2012 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2020-02-12 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2012/acs/acs3/subject', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endp... The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... NaN NaN American Community Survey: 3-Year Estimates: Subject Tables 3-Year True True True https://api.census.gov/data/2012/acs/acs3/subject/values.json https://api.census.gov/data/2012/acs/acs3/subject/groups.json https://api.census.gov/data/2012/acs/acs3/subject/examples.json https://api.census.gov/data/2012/acs/acs3/subject/tags.json https://api.census.gov/data/2012/acs/acs3/subject/variables.json https://api.census.gov/data/2012/acs/acs3/subject/geography.json (acs, acs3, subject) 2012.0
ACSST3Y2013 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2020-02-10 15:55:41.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2013/acs/acs3/subject', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endp... The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... NaN NaN American Community Survey: 3-Year Estimates: Subject Tables 3-Year True True True https://api.census.gov/data/2013/acs/acs3/subject/values.json https://api.census.gov/data/2013/acs/acs3/subject/groups.json https://api.census.gov/data/2013/acs/acs3/subject/examples.json https://api.census.gov/data/2013/acs/acs3/subject/tags.json https://api.census.gov/data/2013/acs/acs3/subject/variables.json https://api.census.gov/data/2013/acs/acs3/subject/geography.json (acs, acs3, subject) 2013.0
ACSST5Y2010 NaN NaN U.S. Census Bureau unidentified United States 006:004 2018-09-18 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2010/acs/acs5/subject', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endp... The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... NaN NaN ACS 5-Year Subject Tables True True True https://api.census.gov/data/2010/acs/acs5/subject/values.json https://api.census.gov/data/2010/acs/acs5/subject/groups.json https://api.census.gov/data/2010/acs/acs5/subject/examples.json https://api.census.gov/data/2010/acs/acs5/subject/tags.json https://api.census.gov/data/2010/acs/acs5/subject/variables.json https://api.census.gov/data/2010/acs/acs5/subject/geography.json (acs, acs5, subject) 2010.0
ACSST5Y2011 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2018-07-05 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2011/acs/acs5/subject', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endp... The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public ACS 5-Year Subject Tables True True True https://api.census.gov/data/2011/acs/acs5/subject/values.json https://api.census.gov/data/2011/acs/acs5/subject/groups.json https://api.census.gov/data/2011/acs/acs5/subject/examples.json https://api.census.gov/data/2011/acs/acs5/subject/tags.json https://api.census.gov/data/2011/acs/acs5/subject/variables.json https://api.census.gov/data/2011/acs/acs5/subject/geography.json (acs, acs5, subject) 2011.0
ACSST5Y2012 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2018-06-29 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2012/acs/acs5/subject', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endp... The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public ACS 5-Year Subject Tables True True True https://api.census.gov/data/2012/acs/acs5/subject/values.json https://api.census.gov/data/2012/acs/acs5/subject/groups.json https://api.census.gov/data/2012/acs/acs5/subject/examples.json https://api.census.gov/data/2012/acs/acs5/subject/tags.json https://api.census.gov/data/2012/acs/acs5/subject/variables.json https://api.census.gov/data/2012/acs/acs5/subject/geography.json (acs, acs5, subject) 2012.0
ACSST5Y2013 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2018-06-29 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2013/acs/acs5/subject', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endp... The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public ACS 5-Year Subject Tables True True True https://api.census.gov/data/2013/acs/acs5/subject/values.json https://api.census.gov/data/2013/acs/acs5/subject/groups.json https://api.census.gov/data/2013/acs/acs5/subject/examples.json https://api.census.gov/data/2013/acs/acs5/subject/tags.json https://api.census.gov/data/2013/acs/acs5/subject/variables.json https://api.census.gov/data/2013/acs/acs5/subject/geography.json (acs, acs5, subject) 2013.0
ACSST5Y2014 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2018-06-29 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2014/acs/acs5/subject', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endp... The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public ACS 5-Year Subject Tables True True True https://api.census.gov/data/2014/acs/acs5/subject/values.json https://api.census.gov/data/2014/acs/acs5/subject/groups.json https://api.census.gov/data/2014/acs/acs5/subject/examples.json https://api.census.gov/data/2014/acs/acs5/subject/tags.json https://api.census.gov/data/2014/acs/acs5/subject/variables.json https://api.census.gov/data/2014/acs/acs5/subject/geography.json (acs, acs5, subject) 2014.0
ACSST5Y2015 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2018-06-29 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2015/acs/acs5/subject', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endp... The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public ACS 5-Year Subject Tables True True True https://api.census.gov/data/2015/acs/acs5/subject/values.json https://api.census.gov/data/2015/acs/acs5/subject/groups.json https://api.census.gov/data/2015/acs/acs5/subject/examples.json https://api.census.gov/data/2015/acs/acs5/subject/tags.json https://api.census.gov/data/2015/acs/acs5/subject/variables.json https://api.census.gov/data/2015/acs/acs5/subject/geography.json (acs, acs5, subject) 2015.0
ACSST5Y2016 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2018-06-29 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2016/acs/acs5/subject', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endp... The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public ACS 5-Year Subject Tables True True True https://api.census.gov/data/2016/acs/acs5/subject/values.json https://api.census.gov/data/2016/acs/acs5/subject/groups.json https://api.census.gov/data/2016/acs/acs5/subject/examples.json https://api.census.gov/data/2016/acs/acs5/subject/tags.json https://api.census.gov/data/2016/acs/acs5/subject/variables.json https://api.census.gov/data/2016/acs/acs5/subject/geography.json (acs, acs5, subject) 2016.0
ACSST5Y2017 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2018-10-19 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2017/acs/acs5/subject', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endp... The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public ACS 5-Year Subject Tables True True True https://api.census.gov/data/2017/acs/acs5/subject/values.json https://api.census.gov/data/2017/acs/acs5/subject/groups.json https://api.census.gov/data/2017/acs/acs5/subject/examples.json https://api.census.gov/data/2017/acs/acs5/subject/tags.json https://api.census.gov/data/2017/acs/acs5/subject/variables.json https://api.census.gov/data/2017/acs/acs5/subject/geography.json (acs, acs5, subject) 2017.0
ACSST5Y2018 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2019-10-22 15:36:29.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:Acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2018/acs/acs5/subject', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endp... The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public ACS 5-Year Subject Tables True True True https://api.census.gov/data/2018/acs/acs5/subject/values.json https://api.census.gov/data/2018/acs/acs5/subject/groups.json https://api.census.gov/data/2018/acs/acs5/subject/examples.json https://api.census.gov/data/2018/acs/acs5/subject/tags.json https://api.census.gov/data/2018/acs/acs5/subject/variables.json https://api.census.gov/data/2018/acs/acs5/subject/geography.json (acs, acs5, subject) 2018.0
ACSST5Y2019 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2020-04-03 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2019/acs/acs5/subject', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endp... The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public American Community Survey: 5-Year Estimates: Subject Tables 5-Year True True True https://api.census.gov/data/2019/acs/acs5/subject/values.json https://api.census.gov/data/2019/acs/acs5/subject/groups.json https://api.census.gov/data/2019/acs/acs5/subject/examples.json https://api.census.gov/data/2019/acs/acs5/subject/tags.json https://api.census.gov/data/2019/acs/acs5/subject/variables.json https://api.census.gov/data/2019/acs/acs5/subject/geography.json (acs, acs5, subject) 2019.0

Many flavors of ACS datasets are available — we want to use the detailed tables version, specifically the 5-year survey.

The relevant identifiers start with: "ACSDT5Y".

In [60]:
# Return a dataframe of all datasets that start with "ACSDT5Y"
available.filter(regex="^ACSDT5Y", axis=0)
Out[60]:
c_isMicrodata c_isTimeseries publisher temporal spatial programCode modified keyword contactPoint distribution description bureauCode accessLevel title c_isAvailable c_isCube c_isAggregate c_valuesLink c_groupsLink c_examplesLink c_tagsLink c_variablesLink c_geographyLink c_dataset vintage
ACSDT5Y2009 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2019-08-27 13:11:18.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2009/acs/acs5', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... NaN NaN American Community Survey: 5-Year Estimates: Detailed Tables 5-Year True True True https://api.census.gov/data/2009/acs/acs5/values.json https://api.census.gov/data/2009/acs/acs5/groups.json https://api.census.gov/data/2009/acs/acs5/examples.json https://api.census.gov/data/2009/acs/acs5/tags.json https://api.census.gov/data/2009/acs/acs5/variables.json https://api.census.gov/data/2009/acs/acs5/geography.json (acs, acs5) 2009.0
ACSDT5Y2010 NaN NaN U.S. Census Bureau unidentified United States 006:004 2018-07-04 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2010/acs/acs5', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... NaN NaN ACS 5-Year Detailed Tables True True True https://api.census.gov/data/2010/acs/acs5/values.json https://api.census.gov/data/2010/acs/acs5/groups.json https://api.census.gov/data/2010/acs/acs5/examples.json https://api.census.gov/data/2010/acs/acs5/tags.json https://api.census.gov/data/2010/acs/acs5/variables.json https://api.census.gov/data/2010/acs/acs5/geography.json (acs, acs5) 2010.0
ACSDT5Y2011 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2018-07-04 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2011/acs/acs5', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public ACS 5-Year Detailed Tables True True True https://api.census.gov/data/2011/acs/acs5/values.json https://api.census.gov/data/2011/acs/acs5/groups.json https://api.census.gov/data/2011/acs/acs5/examples.json https://api.census.gov/data/2011/acs/acs5/tags.json https://api.census.gov/data/2011/acs/acs5/variables.json https://api.census.gov/data/2011/acs/acs5/geography.json (acs, acs5) 2011.0
ACSDT5Y2012 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2018-07-04 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2012/acs/acs5', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public ACS 5-Year Detailed Tables True True True https://api.census.gov/data/2012/acs/acs5/values.json https://api.census.gov/data/2012/acs/acs5/groups.json https://api.census.gov/data/2012/acs/acs5/examples.json https://api.census.gov/data/2012/acs/acs5/tags.json https://api.census.gov/data/2012/acs/acs5/variables.json https://api.census.gov/data/2012/acs/acs5/geography.json (acs, acs5) 2012.0
ACSDT5Y2013 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2018-07-04 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2013/acs/acs5', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public ACS 5-Year Detailed Tables True True True https://api.census.gov/data/2013/acs/acs5/values.json https://api.census.gov/data/2013/acs/acs5/groups.json https://api.census.gov/data/2013/acs/acs5/examples.json https://api.census.gov/data/2013/acs/acs5/tags.json https://api.census.gov/data/2013/acs/acs5/variables.json https://api.census.gov/data/2013/acs/acs5/geography.json (acs, acs5) 2013.0
ACSDT5Y2014 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2018-07-04 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2014/acs/acs5', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public ACS 5-Year Detailed Tables True True True https://api.census.gov/data/2014/acs/acs5/values.json https://api.census.gov/data/2014/acs/acs5/groups.json https://api.census.gov/data/2014/acs/acs5/examples.json https://api.census.gov/data/2014/acs/acs5/tags.json https://api.census.gov/data/2014/acs/acs5/variables.json https://api.census.gov/data/2014/acs/acs5/geography.json (acs, acs5) 2014.0
ACSDT5Y2015 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2018-07-05 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2015/acs/acs5', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public ACS 5-Year Detailed Tables True True True https://api.census.gov/data/2015/acs/acs5/values.json https://api.census.gov/data/2015/acs/acs5/groups.json https://api.census.gov/data/2015/acs/acs5/examples.json https://api.census.gov/data/2015/acs/acs5/tags.json https://api.census.gov/data/2015/acs/acs5/variables.json https://api.census.gov/data/2015/acs/acs5/geography.json (acs, acs5) 2015.0
ACSDT5Y2016 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2018-07-05 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2016/acs/acs5', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public ACS 5-Year Detailed Tables True True True https://api.census.gov/data/2016/acs/acs5/values.json https://api.census.gov/data/2016/acs/acs5/groups.json https://api.census.gov/data/2016/acs/acs5/examples.json https://api.census.gov/data/2016/acs/acs5/tags.json https://api.census.gov/data/2016/acs/acs5/variables.json https://api.census.gov/data/2016/acs/acs5/geography.json (acs, acs5) 2016.0
ACSDT5Y2017 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2018-08-21 07:11:43.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2017/acs/acs5', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public ACS 5-Year Detailed Tables True True True https://api.census.gov/data/2017/acs/acs5/values.json https://api.census.gov/data/2017/acs/acs5/groups.json https://api.census.gov/data/2017/acs/acs5/examples.json https://api.census.gov/data/2017/acs/acs5/tags.json https://api.census.gov/data/2017/acs/acs5/variables.json https://api.census.gov/data/2017/acs/acs5/geography.json (acs, acs5) 2017.0
ACSDT5Y2018 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2019-10-22 16:28:02.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:Acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2018/acs/acs5', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public American Community Survey: 5-Year Estimates: Detailed Tables 5-Year True True True https://api.census.gov/data/2018/acs/acs5/values.json https://api.census.gov/data/2018/acs/acs5/groups.json https://api.census.gov/data/2018/acs/acs5/examples.json https://api.census.gov/data/2018/acs/acs5/tags.json https://api.census.gov/data/2018/acs/acs5/variables.json https://api.census.gov/data/2018/acs/acs5/geography.json (acs, acs5) 2018.0
ACSDT5Y2019 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2020-04-03 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:Acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2019/acs/acs5', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a br... 006:07 public American Community Survey: 5-Year Estimates: Detailed Tables 5-Year True True True https://api.census.gov/data/2019/acs/acs5/values.json https://api.census.gov/data/2019/acs/acs5/groups.json https://api.census.gov/data/2019/acs/acs5/examples.json https://api.census.gov/data/2019/acs/acs5/tags.json https://api.census.gov/data/2019/acs/acs5/variables.json https://api.census.gov/data/2019/acs/acs5/geography.json (acs, acs5) 2019.0
ACSDT5YAIAN2010 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2019-10-24 07:18:57.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2010/acs/acs5/aian', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Indian and Alaska Native (AIAN) tables are released every five years. They are available for selected tribal populations, with more detailed tribal categories compared to those in the... NaN NaN American Community Survey: 5-Year Estimates: American Indian and Alaska Native Detailed Tables 5-Year True True True https://api.census.gov/data/2010/acs/acs5/aian/values.json https://api.census.gov/data/2010/acs/acs5/aian/groups.json https://api.census.gov/data/2010/acs/acs5/aian/examples.json https://api.census.gov/data/2010/acs/acs5/aian/tags.json https://api.census.gov/data/2010/acs/acs5/aian/variables.json https://api.census.gov/data/2010/acs/acs5/aian/geography.json (acs, acs5, aian) 2010.0
ACSDT5YAIAN2015 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2020-02-13 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2015/acs/acs5/aian', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The American Indian and Alaska Native (AIAN) tables are released every five years. They are available for selected tribal populations, with more detailed tribal categories compared to those in the... NaN NaN ACS 5-Year AIAN Detailed Tables True True True https://api.census.gov/data/2015/acs/acs5/aian/values.json https://api.census.gov/data/2015/acs/acs5/aian/groups.json https://api.census.gov/data/2015/acs/acs5/aian/examples.json https://api.census.gov/data/2015/acs/acs5/aian/tags.json https://api.census.gov/data/2015/acs/acs5/aian/variables.json https://api.census.gov/data/2015/acs/acs5/aian/geography.json (acs, acs5, aian) 2015.0
ACSDT5YSPT2010 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2019-10-11 14:16:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2010/acs/acs5/spt', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The Selected Population Tables (SPT) are released every five years. They are available for selected race, Hispanic origin, tribal, and ancestry populations. NaN NaN American Community Survey: 5-Year Estimates: Selected Population Detailed Tables 5-Year True True True https://api.census.gov/data/2010/acs/acs5/spt/values.json https://api.census.gov/data/2010/acs/acs5/spt/groups.json https://api.census.gov/data/2010/acs/acs5/spt/examples.json https://api.census.gov/data/2010/acs/acs5/spt/tags.json https://api.census.gov/data/2010/acs/acs5/spt/variables.json https://api.census.gov/data/2010/acs/acs5/spt/geography.json (acs, acs5, spt) 2010.0
ACSDT5YSPT2015 NaN NaN U.S. Census Bureau unidentified NaN 006:004 2020-02-18 00:00:00.0 () {'fn': 'American Community Survey Office', 'hasEmail': 'mailto:acso.users.support@census.gov'} {'@type': 'dcat:Distribution', 'accessURL': 'https://api.census.gov/data/2015/acs/acs5/spt', 'description': 'API endpoint', 'format': 'API', 'mediaType': 'application/json', 'title': 'API endpoint'} The Selected Population Tables (SPT) are released every five years. They are available for selected race, Hispanic origin, tribal, and ancestry populations. NaN NaN American Community Survey: 5-Year Estimates: Selected Population Detailed Tables 5-Year True True True https://api.census.gov/data/2015/acs/acs5/spt/values.json https://api.census.gov/data/2015/acs/acs5/spt/groups.json https://api.census.gov/data/2015/acs/acs5/spt/examples.json https://api.census.gov/data/2015/acs/acs5/spt/tags.json https://api.census.gov/data/2015/acs/acs5/spt/variables.json https://api.census.gov/data/2015/acs/acs5/spt/geography.json (acs, acs5, spt) 2015.0

Let's use the latest available data (2019). We can use the explain() function to print out a description of the dataset:

In [61]:
cenpy.explorer.explain("ACSDT5Y2019")
Out[61]:
{'American Community Survey: 5-Year Estimates: Detailed Tables 5-Year': 'The American Community Survey (ACS) is an ongoing survey that provides data every year -- giving communities the current information they need to plan investments and services. The ACS covers a broad range of topics about social, economic, demographic, and housing characteristics of the U.S. population. Summary files include the following geographies: nation, all states (including DC and Puerto Rico), all metropolitan areas, all congressional districts (116th Congress), all counties, all places, and all tracts and block groups. Summary files contain the most detailed cross-tabulations, many of which are published down to block groups. The data are population and housing counts. There are over 64,000 variables in this dataset.'}

Step 2: Initialize the API connection

Use the cenpy.remote.APIConnection object, and pass it the name of the dataset.

In [62]:
acs = cenpy.remote.APIConnection("ACSDT5Y2019")

Step 3: Find the variables we want to load

The .variables attribute stores the available variables (across all Census tables).

We can use the varslike() function to search the variables dataframe (it's just a simple wrapper around the pandas filter() function).

In [63]:
len(acs.variables)
Out[63]:
27080
In [64]:
acs.variables.head(n=10)
Out[64]:
label concept predicateType group limit predicateOnly attributes required
for Census API FIPS 'for' clause Census API Geography Specification fips-for N/A 0 True NaN NaN
in Census API FIPS 'in' clause Census API Geography Specification fips-in N/A 0 True NaN NaN
ucgid Uniform Census Geography Identifier clause Census API Geography Specification ucgid N/A 0 True NaN NaN
B24022_060E Estimate!!Total:!!Female:!!Service occupations:!!Food preparation and serving related occupations SEX BY OCCUPATION AND MEDIAN EARNINGS IN THE PAST 12 MONTHS (IN 2019 INFLATION-ADJUSTED DOLLARS) FOR THE FULL-TIME, YEAR-ROUND CIVILIAN EMPLOYED POPULATION 16 YEARS AND OVER int B24022 0 NaN B24022_060EA,B24022_060M,B24022_060MA NaN
B19001B_014E Estimate!!Total:!!$100,000 to $124,999 HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2019 INFLATION-ADJUSTED DOLLARS) (BLACK OR AFRICAN AMERICAN ALONE HOUSEHOLDER) int B19001B 0 NaN B19001B_014EA,B19001B_014M,B19001B_014MA NaN
B07007PR_019E Estimate!!Total:!!Moved from different municipio:!!Foreign born:!!Naturalized U.S. citizen GEOGRAPHICAL MOBILITY IN THE PAST YEAR BY CITIZENSHIP STATUS FOR CURRENT RESIDENCE IN PUERTO RICO int B07007PR 0 NaN B07007PR_019EA,B07007PR_019M,B07007PR_019MA NaN
B19101A_004E Estimate!!Total:!!$15,000 to $19,999 FAMILY INCOME IN THE PAST 12 MONTHS (IN 2019 INFLATION-ADJUSTED DOLLARS) (WHITE ALONE HOUSEHOLDER) int B19101A 0 NaN B19101A_004EA,B19101A_004M,B19101A_004MA NaN
B24022_061E Estimate!!Total:!!Female:!!Service occupations:!!Building and grounds cleaning and maintenance occupations SEX BY OCCUPATION AND MEDIAN EARNINGS IN THE PAST 12 MONTHS (IN 2019 INFLATION-ADJUSTED DOLLARS) FOR THE FULL-TIME, YEAR-ROUND CIVILIAN EMPLOYED POPULATION 16 YEARS AND OVER int B24022 0 NaN B24022_061EA,B24022_061M,B24022_061MA NaN
B19001B_013E Estimate!!Total:!!$75,000 to $99,999 HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2019 INFLATION-ADJUSTED DOLLARS) (BLACK OR AFRICAN AMERICAN ALONE HOUSEHOLDER) int B19001B 0 NaN B19001B_013EA,B19001B_013M,B19001B_013MA NaN
B07007PR_018E Estimate!!Total:!!Moved from different municipio:!!Foreign born: GEOGRAPHICAL MOBILITY IN THE PAST YEAR BY CITIZENSHIP STATUS FOR CURRENT RESIDENCE IN PUERTO RICO int B07007PR 0 NaN B07007PR_018EA,B07007PR_018M,B07007PR_018MA NaN

We're interested in variables about hispanic origin broken down by race — let's see if we can find the variables where the "Concept" column starts with "RACE"

In [65]:
acs.varslike?
In [66]:
acs.varslike("HISPANIC OR LATINO ORIGIN BY RACE", by='concept').sort_index() # searches along concept column
Out[66]:
label concept predicateType group limit predicateOnly attributes required
B03002_001E Estimate!!Total: HISPANIC OR LATINO ORIGIN BY RACE int B03002 0 NaN B03002_001EA,B03002_001M,B03002_001MA NaN
B03002_002E Estimate!!Total:!!Not Hispanic or Latino: HISPANIC OR LATINO ORIGIN BY RACE int B03002 0 NaN B03002_002EA,B03002_002M,B03002_002MA NaN
B03002_003E Estimate!!Total:!!Not Hispanic or Latino:!!White alone HISPANIC OR LATINO ORIGIN BY RACE int B03002 0 NaN B03002_003EA,B03002_003M,B03002_003MA NaN
B03002_004E Estimate!!Total:!!Not Hispanic or Latino:!!Black or African American alone HISPANIC OR LATINO ORIGIN BY RACE int B03002 0 NaN B03002_004EA,B03002_004M,B03002_004MA NaN
B03002_005E Estimate!!Total:!!Not Hispanic or Latino:!!American Indian and Alaska Native alone HISPANIC OR LATINO ORIGIN BY RACE int B03002 0 NaN B03002_005EA,B03002_005M,B03002_005MA NaN
B03002_006E Estimate!!Total:!!Not Hispanic or Latino:!!Asian alone HISPANIC OR LATINO ORIGIN BY RACE int B03002 0 NaN B03002_006EA,B03002_006M,B03002_006MA NaN
B03002_007E Estimate!!Total:!!Not Hispanic or Latino:!!Native Hawaiian and Other Pacific Islander alone HISPANIC OR LATINO ORIGIN BY RACE int B03002 0 NaN B03002_007EA,B03002_007M,B03002_007MA NaN
B03002_008E Estimate!!Total:!!Not Hispanic or Latino:!!Some other race alone HISPANIC OR LATINO ORIGIN BY RACE int B03002 0 NaN B03002_008EA,B03002_008M,B03002_008MA NaN
B03002_009E Estimate!!Total:!!Not Hispanic or Latino:!!Two or more races: HISPANIC OR LATINO ORIGIN BY RACE int B03002 0 NaN B03002_009EA,B03002_009M,B03002_009MA NaN
B03002_010E Estimate!!Total:!!Not Hispanic or Latino:!!Two or more races:!!Two races including Some other race HISPANIC OR LATINO ORIGIN BY RACE int B03002 0 NaN B03002_010EA,B03002_010M,B03002_010MA NaN
B03002_011E Estimate!!Total:!!Not Hispanic or Latino:!!Two or more races:!!Two races excluding Some other race, and three or more races HISPANIC OR LATINO ORIGIN BY RACE int B03002 0 NaN B03002_011EA,B03002_011M,B03002_011MA NaN
B03002_012E Estimate!!Total:!!Hispanic or Latino: HISPANIC OR LATINO ORIGIN BY RACE int B03002 0 NaN B03002_012EA,B03002_012M,B03002_012MA NaN
B03002_013E Estimate!!Total:!!Hispanic or Latino:!!White alone HISPANIC OR LATINO ORIGIN BY RACE int B03002 0 NaN B03002_013EA,B03002_013M,B03002_013MA NaN
B03002_014E Estimate!!Total:!!Hispanic or Latino:!!Black or African American alone HISPANIC OR LATINO ORIGIN BY RACE int B03002 0 NaN B03002_014EA,B03002_014M,B03002_014MA NaN
B03002_015E Estimate!!Total:!!Hispanic or Latino:!!American Indian and Alaska Native alone HISPANIC OR LATINO ORIGIN BY RACE int B03002 0 NaN B03002_015EA,B03002_015M,B03002_015MA NaN
B03002_016E Estimate!!Total:!!Hispanic or Latino:!!Asian alone HISPANIC OR LATINO ORIGIN BY RACE int B03002 0 NaN B03002_016EA,B03002_016M,B03002_016MA NaN
B03002_017E Estimate!!Total:!!Hispanic or Latino:!!Native Hawaiian and Other Pacific Islander alone HISPANIC OR LATINO ORIGIN BY RACE int B03002 0 NaN B03002_017EA,B03002_017M,B03002_017MA NaN
B03002_018E Estimate!!Total:!!Hispanic or Latino:!!Some other race alone HISPANIC OR LATINO ORIGIN BY RACE int B03002 0 NaN B03002_018EA,B03002_018M,B03002_018MA NaN
B03002_019E Estimate!!Total:!!Hispanic or Latino:!!Two or more races: HISPANIC OR LATINO ORIGIN BY RACE int B03002 0 NaN B03002_019EA,B03002_019M,B03002_019MA NaN
B03002_020E Estimate!!Total:!!Hispanic or Latino:!!Two or more races:!!Two races including Some other race HISPANIC OR LATINO ORIGIN BY RACE int B03002 0 NaN B03002_020EA,B03002_020M,B03002_020MA NaN
B03002_021E Estimate!!Total:!!Hispanic or Latino:!!Two or more races:!!Two races excluding Some other race, and three or more races HISPANIC OR LATINO ORIGIN BY RACE int B03002 0 NaN B03002_021EA,B03002_021M,B03002_021MA NaN
GEO_ID Geography FAMILY INCOME IN THE PAST 12 MONTHS (IN 2019 INFLATION-ADJUSTED DOLLARS) (AMERICAN INDIAN AND ALASKA NATIVE ALONE HOUSEHOLDER);FAMILY INCOME IN THE PAST 12 MONTHS (IN 2019 INFLATION-ADJUSTED DOLLA... string B17015,B18104,B17016,B18105,B17017,B18106,B17018,B18107,B19301A,B07001PR,B17011,B17012,B18101,B17013,B18102,B17014,B18103,B19301E,B19301D,B19301C,B19301B,B17010,B19301I,B98013,B99102,B19301H,B9801... 0 NaN NAME NaN
In [ ]:
 

It looks like the table we want is "B03002" — we can also easily filter for all variables in this table

In [67]:
variables = [
    "NAME",
    "B03002_001E", # Total
    "B03002_003E", # Not Hispanic, White
    "B03002_004E", # Not Hispanic, Black
    "B03002_005E", # Not Hispanic, American Indian
    "B03002_006E", # Not Hispanic, Asian
    "B03002_007E", # Not Hispanic, Native Hawaiian
    "B03002_008E", # Not Hispanic, Other
    "B03002_009E", # Not Hispanic, Two or More Races
    "B03002_012E", # Hispanic
]

Note: we've also include the "NAME" variable which returns the name of the Census geography we are querying for

Step 4: Identify the geographies to use

The Census API use heirarchy of geographies when requesting data.

For example, you cannot just request data for a specific county — you need to specify the state and the county.

Common hierarchies

  • State --> county
  • State --> place (e.g., cities)
  • State --> county --> tract
  • State --> county --> tract --> block group

Tip: Use the .geographies attribute

This allows you to see:

  1. What geographies are available for a specific dataset
  2. The other required geographies in the heirarchy
In [69]:
acs.geographies['fips']
Out[69]:
name geoLevelDisplay referenceDate requires wildcard optionalWithWCFor
0 us 010 2019-01-01 NaN NaN NaN
1 region 020 2019-01-01 NaN NaN NaN
2 division 030 2019-01-01 NaN NaN NaN
3 state 040 2019-01-01 NaN NaN NaN
4 county 050 2019-01-01 [state] [state] state
5 county subdivision 060 2019-01-01 [state, county] [county] county
6 subminor civil division 067 2019-01-01 [state, county, county subdivision] NaN NaN
7 place/remainder (or part) 070 2019-01-01 [state, county, county subdivision] NaN NaN
8 tract 140 2019-01-01 [state, county] [county] county
9 block group 150 2019-01-01 [state, county, tract] [county, tract] tract
10 county (or part) 155 2019-01-01 [state, place] NaN NaN
11 place 160 2019-01-01 [state] [state] state
12 consolidated city 170 2019-01-01 [state] [state] state
13 place (or part) 172 2019-01-01 [state, consolidated city] NaN NaN
14 alaska native regional corporation 230 2019-01-01 [state] [state] state
15 american indian area/alaska native area/hawaiian home land 250 2019-01-01 NaN NaN NaN
16 american indian tribal subdivision 251 2019-01-01 [american indian area/alaska native area/hawaiian home land] [american indian area/alaska native area/hawaiian home land] american indian area/alaska native area/hawaiian home land
17 american indian area/alaska native area (reservation or statistical entity only) 252 2019-01-01 NaN NaN NaN
18 american indian area (off-reservation trust land only)/hawaiian home land 254 2019-01-01 NaN NaN NaN
19 tribal census tract 256 2019-01-01 [american indian area/alaska native area/hawaiian home land] NaN NaN
20 tribal block group 258 2019-01-01 [american indian area/alaska native area/hawaiian home land, tribal census tract] NaN NaN
21 state (or part) 260 2019-01-01 [american indian area/alaska native area/hawaiian home land] NaN NaN
22 place (or part) 269 2019-01-01 [american indian area/alaska native area/hawaiian home land, state (or part)] NaN NaN
23 county (or part) 270 2019-01-01 [american indian area/alaska native area/hawaiian home land, state (or part)] NaN NaN
24 american indian area/alaska native area/hawaiian home land (or part) 280 2019-01-01 [state] NaN NaN
25 american indian area/alaska native area (reservation or statistical entity only) (or part) 283 2019-01-01 [state] NaN NaN
26 american indian area (off-reservation trust land only)/hawaiian home land (or part) 286 2019-01-01 [state] NaN NaN
27 state (or part) 290 2019-01-01 [american indian area/alaska native area/hawaiian home land, american indian tribal subdivision] NaN NaN
28 tribal census tract (or part) 291 2019-01-01 [american indian area/alaska native area/hawaiian home land, american indian area/alaska native area (reservation or statistical entity only)] NaN NaN
29 tribal census tract (or part) 292 2019-01-01 [american indian area/alaska native area/hawaiian home land, american indian area (off-reservation trust land only)/hawaiian home land] NaN NaN
30 tribal block group (or part) 293 2019-01-01 [american indian area/alaska native area/hawaiian home land, american indian area/alaska native area (reservation or statistical entity only), tribal census tract (or part)] NaN NaN
31 tribal block group (or part) 294 2019-01-01 [american indian area/alaska native area/hawaiian home land, american indian area (off-reservation trust land only)/hawaiian home land, tribal census tract (or part)] NaN NaN
32 metropolitan statistical area/micropolitan statistical area 310 2019-01-01 NaN NaN NaN
33 state (or part) 311 2019-01-01 [metropolitan statistical area/micropolitan statistical area] NaN NaN
34 principal city (or part) 312 2019-01-01 [metropolitan statistical area/micropolitan statistical area, state (or part)] NaN NaN
35 county 313 2019-01-01 [metropolitan statistical area/micropolitan statistical area, state (or part)] NaN NaN
36 metropolitan division 314 2019-01-01 [metropolitan statistical area/micropolitan statistical area] NaN NaN
37 state (or part) 315 2019-01-01 [metropolitan statistical area/micropolitan statistical area, metropolitan division] NaN NaN
38 county 316 2019-01-01 [metropolitan statistical area/micropolitan statistical area, metropolitan division, state (or part)] NaN NaN
39 metropolitan statistical area/micropolitan statistical area (or part) 320 2019-01-01 [state] NaN NaN
40 principal city (or part) 321 2019-01-01 [state, metropolitan statistical area/micropolitan statistical area (or part)] NaN NaN
41 county 322 2019-01-01 [state, metropolitan statistical area/micropolitan statistical area (or part)] NaN NaN
42 metropolitan division (or part) 323 2019-01-01 [state, metropolitan statistical area/micropolitan statistical area (or part)] NaN NaN
43 county 324 2019-01-01 [state, metropolitan statistical area/micropolitan statistical area (or part), metropolitan division (or part)] NaN NaN
44 combined statistical area 330 2019-01-01 NaN NaN NaN
45 state (or part) 331 2019-01-01 [combined statistical area] NaN NaN
46 metropolitan statistical area/micropolitan statistical area 332 2019-01-01 [combined statistical area] NaN NaN
47 state (or part) 333 2019-01-01 [combined statistical area, metropolitan statistical area/micropolitan statistical area] NaN NaN
48 combined new england city and town area 335 2019-01-01 NaN NaN NaN
49 state (or part) 336 2019-01-01 [combined new england city and town area] NaN NaN
50 new england city and town area 337 2019-01-01 [combined new england city and town area] NaN NaN
51 state (or part) 338 2019-01-01 [combined new england city and town area, new england city and town area] NaN NaN
52 combined statistical area (or part) 340 2019-01-01 [state] NaN NaN
53 metropolitan statistical area/micropolitan statistical area (or part) 341 2019-01-01 [state, combined statistical area (or part)] NaN NaN
54 combined new england city and town area (or part) 345 2019-01-01 [state] NaN NaN
55 new england city and town area (or part) 346 2019-01-01 [state, combined new england city and town area (or part)] NaN NaN
56 new england city and town area 350 2019-01-01 NaN NaN NaN
57 state (or part) 351 2019-01-01 [new england city and town area] NaN NaN
58 principal city 352 2019-01-01 [new england city and town area, state (or part)] [state (or part)] state (or part)
59 county (or part) 353 2019-01-01 [new england city and town area, state (or part)] [state (or part)] state (or part)
60 county subdivision 354 2019-01-01 [new england city and town area, state (or part), county (or part)] [county (or part)] county (or part)
61 necta division 355 2019-01-01 [new england city and town area] NaN NaN
62 state (or part) 356 2019-01-01 [new england city and town area, necta division] NaN NaN
63 county (or part) 357 2019-01-01 [new england city and town area, necta division, state (or part)] NaN NaN
64 county subdivision 358 2019-01-01 [new england city and town area, necta division, state (or part), county (or part)] NaN NaN
65 new england city and town area (or part) 360 2019-01-01 [state] NaN NaN
66 principal city 361 2019-01-01 [state, new england city and town area (or part)] NaN NaN
67 county (or part) 362 2019-01-01 [state, new england city and town area (or part)] NaN NaN
68 county subdivision 363 2019-01-01 [state, new england city and town area (or part), county (or part)] NaN NaN
69 necta division (or part) 364 2019-01-01 [state, new england city and town area (or part)] NaN NaN
70 county (or part) 365 2019-01-01 [state, new england city and town area (or part), necta division (or part)] NaN NaN
71 county subdivision 366 2019-01-01 [state, new england city and town area (or part), necta division (or part), county (or part)] NaN NaN
72 urban area 400 2019-01-01 NaN NaN NaN
73 state (or part) 410 2019-01-01 [urban area] NaN NaN
74 county (or part) 430 2019-01-01 [urban area, state (or part)] NaN NaN
75 congressional district 500 2019-01-01 [state] [state] state
76 county (or part) 510 2019-01-01 [state, congressional district] NaN NaN
77 american indian area/alaska native area/hawaiian home land (or part) 550 2019-01-01 [state, congressional district] NaN NaN
78 state legislative district (upper chamber) 610 2019-01-01 [state] NaN NaN
79 county (or part) 612 2019-01-01 [state, state legislative district (upper chamber)] NaN NaN
80 state legislative district (lower chamber) 620 2019-01-01 [state] NaN NaN
81 county (or part) 622 2019-01-01 [state, state legislative district (lower chamber)] NaN NaN
82 public use microdata area 795 2019-01-01 [state] [state] state
83 zip code tabulation area 860 2019-01-01 [state] [state] state
84 school district (elementary) 950 2019-01-01 [state] NaN NaN
85 school district (secondary) 960 2019-01-01 [state] NaN NaN
86 school district (unified) 970 2019-01-01 [state] NaN NaN

For the racial dot map, we'll use the most granular available geography: block group.

The hierarchy is: state --> county --> tract --> block group but we can use the * operator for tracts so we'll need to know the FIPS codes for PA and Philadelphia County

In [70]:
counties = cenpy.explorer.fips_table("COUNTY")
counties.head()
Out[70]:
0 1 2 3 4
0 AL 1 1 Autauga County H1
1 AL 1 3 Baldwin County H1
2 AL 1 5 Barbour County H1
3 AL 1 7 Bibb County H1
4 AL 1 9 Blount County H1
In [71]:
# Trim to just Philadelphia
# Search for rows where name contains "Philadelphia"
counties.loc[ counties[3].str.contains("Philadelphia") ]
Out[71]:
0 1 2 3 4
2294 PA 42 101 Philadelphia County H6

For Philadelphia County, the FIPS codes are:

  • Philadelphia County: "101"
  • PA: "42"
In [72]:
philly_county_code = "101"
pa_state_code = "42"

You can also look up FIPS codes on Google! Wikipedia is usually a trustworthy source...

Step 5: Build the query (finally)

We'll use the .query() function, which takes the following arguments:

  1. cols - the list of variables desired from the dataset
  2. geo_unit - string denoting the smallest geographic unit; syntax is "name:FIPS"
  3. geo_filter - dictionary containing groupings of geo_units, if required by the hierarchy
In [73]:
philly_demo_data = acs.query(
    cols=variables,
    geo_unit="block group:*",
    geo_filter={"state": pa_state_code, 
                "county": philly_county_code, 
                "tract": "*"},
)


philly_demo_data.head()
Out[73]:
NAME B03002_001E B03002_003E B03002_004E B03002_005E B03002_006E B03002_007E B03002_008E B03002_009E B03002_012E state county tract block group
0 Block Group 1, Census Tract 9807, Philadelphia County, Pennsylvania 0 0 0 0 0 0 0 0 0 42 101 980700 1
1 Block Group 3, Census Tract 27.01, Philadelphia County, Pennsylvania 1955 904 262 0 502 0 0 36 251 42 101 002701 3
2 Block Group 2, Census Tract 337.01, Philadelphia County, Pennsylvania 976 654 0 0 99 0 41 103 79 42 101 033701 2
3 Block Group 3, Census Tract 337.01, Philadelphia County, Pennsylvania 3859 1594 477 0 305 0 0 182 1301 42 101 033701 3
4 Block Group 2, Census Tract 205, Philadelphia County, Pennsylvania 1017 36 796 0 124 0 0 0 61 42 101 020500 2

Important: data is returned as strings rather than numeric values

In [74]:
for variable in variables:
    
    # Convert all variables EXCEPT for NAME
    if variable != "NAME":
        philly_demo_data[variable] = philly_demo_data[variable].astype(float)

What if we mess up the geographic hierarchy?

If you forget to include required parts of the geography heirarchy, you'll get an error!

In [75]:
acs.query(
    cols=variables,
    geo_unit="block group:*",
    geo_filter={"state": pa_state_code},
)
---------------------------------------------------------------------------
JSONDecodeError                           Traceback (most recent call last)
~/opt/miniconda3/envs/musa-550-fall-2021/lib/python3.8/site-packages/cenpy/remote.py in query(self, cols, geo_unit, geo_filter, apikey, **kwargs)
    218         try:
--> 219             json_content = res.json()
    220             df = pd.DataFrame().from_records(json_content[1:], columns=json_content[0])

~/opt/miniconda3/envs/musa-550-fall-2021/lib/python3.8/site-packages/requests/models.py in json(self, **kwargs)
    909                     pass
--> 910         return complexjson.loads(self.text, **kwargs)
    911 

~/opt/miniconda3/envs/musa-550-fall-2021/lib/python3.8/site-packages/simplejson/__init__.py in loads(s, encoding, cls, object_hook, parse_float, parse_int, parse_constant, object_pairs_hook, use_decimal, **kw)
    524             and not use_decimal and not kw):
--> 525         return _default_decoder.decode(s)
    526     if cls is None:

~/opt/miniconda3/envs/musa-550-fall-2021/lib/python3.8/site-packages/simplejson/decoder.py in decode(self, s, _w, _PY3)
    369             s = str(s, self.encoding)
--> 370         obj, end = self.raw_decode(s)
    371         end = _w(s, end).end()

~/opt/miniconda3/envs/musa-550-fall-2021/lib/python3.8/site-packages/simplejson/decoder.py in raw_decode(self, s, idx, _w, _PY3)
    399                 idx += 3
--> 400         return self.scan_once(s, idx=_w(s, idx).end())

JSONDecodeError: Expecting value: line 1 column 1 (char 0)

During handling of the above exception, another exception occurred:

HTTPError                                 Traceback (most recent call last)
/var/folders/49/ntrr94q12xd4rq8hqdnx96gm0000gn/T/ipykernel_2666/378178940.py in <module>
----> 1 acs.query(
      2     cols=variables,
      3     geo_unit="block group:*",
      4     geo_filter={"state": pa_state_code},
      5 )

~/opt/miniconda3/envs/musa-550-fall-2021/lib/python3.8/site-packages/cenpy/remote.py in query(self, cols, geo_unit, geo_filter, apikey, **kwargs)
    227         except (ValueError, JSONDecodeError):
    228             if res.status_code == 400:
--> 229                 raise r.HTTPError(
    230                     "400 " + "\n".join(map(lambda x: x.decode(), res.iter_lines()))
    231                 )

HTTPError: 400 error: unknown/unsupported geography heirarchy

We need the block group geometries too!

cenpy includes an interface to the Census' [Tiger] shapefile database.

In [76]:
cenpy.tiger.available()
Out[76]:
[{'name': 'AIANNHA', 'type': 'MapServer'},
 {'name': 'CBSA', 'type': 'MapServer'},
 {'name': 'Hydro', 'type': 'MapServer'},
 {'name': 'Labels', 'type': 'MapServer'},
 {'name': 'Legislative', 'type': 'MapServer'},
 {'name': 'Places_CouSub_ConCity_SubMCD', 'type': 'MapServer'},
 {'name': 'PUMA_TAD_TAZ_UGA_ZCTA', 'type': 'MapServer'},
 {'name': 'Region_Division', 'type': 'MapServer'},
 {'name': 'School', 'type': 'MapServer'},
 {'name': 'Special_Land_Use_Areas', 'type': 'MapServer'},
 {'name': 'State_County', 'type': 'MapServer'},
 {'name': 'tigerWMS_ACS2012', 'type': 'MapServer'},
 {'name': 'tigerWMS_ACS2013', 'type': 'MapServer'},
 {'name': 'tigerWMS_ACS2014', 'type': 'MapServer'},
 {'name': 'tigerWMS_ACS2015', 'type': 'MapServer'},
 {'name': 'tigerWMS_ACS2016', 'type': 'MapServer'},
 {'name': 'tigerWMS_ACS2017', 'type': 'MapServer'},
 {'name': 'tigerWMS_ACS2018', 'type': 'MapServer'},
 {'name': 'tigerWMS_ACS2019', 'type': 'MapServer'},
 {'name': 'tigerWMS_ACS2021', 'type': 'MapServer'},
 {'name': 'tigerWMS_Census2010', 'type': 'MapServer'},
 {'name': 'tigerWMS_Census2020', 'type': 'MapServer'},
 {'name': 'tigerWMS_Current', 'type': 'MapServer'},
 {'name': 'tigerWMS_ECON2012', 'type': 'MapServer'},
 {'name': 'tigerWMS_PhysicalFeatures', 'type': 'MapServer'},
 {'name': 'Tracts_Blocks', 'type': 'MapServer'},
 {'name': 'Transportation', 'type': 'MapServer'},
 {'name': 'TribalTracts', 'type': 'MapServer'},
 {'name': 'Urban', 'type': 'MapServer'},
 {'name': 'USLandmass', 'type': 'MapServer'}]

Set the ACS2019 database as the desired GeoService

In [77]:
acs.set_mapservice("tigerWMS_ACS2019")
Out[77]:
Connection to American Community Survey: 5-Year Estimates: Detailed Tables 5-Year(ID: https://api.census.gov/data/id/ACSDT5Y2019)
With MapServer: Census ACS 2019 WMS

The map service has many different layers — select the layer for our desired geography

In [78]:
acs.mapservice.layers
Out[78]:
[(ESRILayer) 2010 Census Public Use Microdata Areas,
 (ESRILayer) 2010 Census Public Use Microdata Areas Labels,
 (ESRILayer) 2010 Census ZIP Code Tabulation Areas,
 (ESRILayer) 2010 Census ZIP Code Tabulation Areas Labels,
 (ESRILayer) Tribal Census Tracts,
 (ESRILayer) Tribal Census Tracts Labels,
 (ESRILayer) Tribal Block Groups,
 (ESRILayer) Tribal Block Groups Labels,
 (ESRILayer) Census Tracts,
 (ESRILayer) Census Tracts Labels,
 (ESRILayer) Census Block Groups,
 (ESRILayer) Census Block Groups Labels,
 (ESRILayer) Unified School Districts,
 (ESRILayer) Unified School Districts Labels,
 (ESRILayer) Secondary School Districts,
 (ESRILayer) Secondary School Districts Labels,
 (ESRILayer) Elementary School Districts,
 (ESRILayer) Elementary School Districts Labels,
 (ESRILayer) Estates,
 (ESRILayer) Estates Labels,
 (ESRILayer) County Subdivisions,
 (ESRILayer) County Subdivisions Labels,
 (ESRILayer) Subbarrios,
 (ESRILayer) Subbarrios Labels,
 (ESRILayer) Consolidated Cities,
 (ESRILayer) Consolidated Cities Labels,
 (ESRILayer) Incorporated Places,
 (ESRILayer) Incorporated Places Labels,
 (ESRILayer) Census Designated Places,
 (ESRILayer) Census Designated Places Labels,
 (ESRILayer) Alaska Native Regional Corporations,
 (ESRILayer) Alaska Native Regional Corporations Labels,
 (ESRILayer) Tribal Subdivisions,
 (ESRILayer) Tribal Subdivisions Labels,
 (ESRILayer) Federal American Indian Reservations,
 (ESRILayer) Federal American Indian Reservations Labels,
 (ESRILayer) Off-Reservation Trust Lands,
 (ESRILayer) Off-Reservation Trust Lands Labels,
 (ESRILayer) State American Indian Reservations,
 (ESRILayer) State American Indian Reservations Labels,
 (ESRILayer) Hawaiian Home Lands,
 (ESRILayer) Hawaiian Home Lands Labels,
 (ESRILayer) Alaska Native Village Statistical Areas,
 (ESRILayer) Alaska Native Village Statistical Areas Labels,
 (ESRILayer) Oklahoma Tribal Statistical Areas,
 (ESRILayer) Oklahoma Tribal Statistical Areas Labels,
 (ESRILayer) State Designated Tribal Statistical Areas,
 (ESRILayer) State Designated Tribal Statistical Areas Labels,
 (ESRILayer) Tribal Designated Statistical Areas,
 (ESRILayer) Tribal Designated Statistical Areas Labels,
 (ESRILayer) American Indian Joint-Use Areas,
 (ESRILayer) American Indian Joint-Use Areas Labels,
 (ESRILayer) 116th Congressional Districts,
 (ESRILayer) 116th Congressional Districts Labels,
 (ESRILayer) 2018 State Legislative Districts - Upper,
 (ESRILayer) 2018 State Legislative Districts - Upper Labels,
 (ESRILayer) 2018 State Legislative Districts - Lower,
 (ESRILayer) 2018 State Legislative Districts - Lower Labels,
 (ESRILayer) Census Divisions,
 (ESRILayer) Census Divisions Labels,
 (ESRILayer) Census Regions,
 (ESRILayer) Census Regions Labels,
 (ESRILayer) 2010 Census Urbanized Areas,
 (ESRILayer) 2010 Census Urbanized Areas Labels,
 (ESRILayer) 2010 Census Urban Clusters,
 (ESRILayer) 2010 Census Urban Clusters Labels,
 (ESRILayer) Combined New England City and Town Areas,
 (ESRILayer) Combined New England City and Town Areas Labels,
 (ESRILayer) New England City and Town Area Divisions,
 (ESRILayer) New England City and Town Area  Divisions Labels,
 (ESRILayer) Metropolitan New England City and Town Areas,
 (ESRILayer) Metropolitan New England City and Town Areas Labels,
 (ESRILayer) Micropolitan New England City and Town Areas,
 (ESRILayer) Micropolitan New England City and Town Areas Labels,
 (ESRILayer) Combined Statistical Areas,
 (ESRILayer) Combined Statistical Areas Labels,
 (ESRILayer) Metropolitan Divisions,
 (ESRILayer) Metropolitan Divisions Labels,
 (ESRILayer) Metropolitan Statistical Areas,
 (ESRILayer) Metropolitan Statistical Areas Labels,
 (ESRILayer) Micropolitan Statistical Areas,
 (ESRILayer) Micropolitan Statistical Areas Labels,
 (ESRILayer) States,
 (ESRILayer) States Labels,
 (ESRILayer) Counties,
 (ESRILayer) Counties Labels]
In [79]:
acs.mapservice.layers[10]
Out[79]:
(ESRILayer) Census Block Groups

Query the service using the .query() function.

We can use a SQL command to request census tracts only for Philadelphia county by specifying the other geographies in the hierachy (in this case, state and county)

In [80]:
acs.mapservice.layers[10].variables
Out[80]:
name type alias length domain
0 MTFCC esriFieldTypeString MTFCC 5.0 None
1 OID esriFieldTypeString OID 22.0 None
2 GEOID esriFieldTypeString GEOID 12.0 None
3 STATE esriFieldTypeString STATE 2.0 None
4 COUNTY esriFieldTypeString COUNTY 3.0 None
5 TRACT esriFieldTypeString TRACT 6.0 None
6 BLKGRP esriFieldTypeString BLKGRP 1.0 None
7 BASENAME esriFieldTypeString BASENAME 100.0 None
8 NAME esriFieldTypeString NAME 100.0 None
9 LSADC esriFieldTypeString LSADC 2.0 None
10 FUNCSTAT esriFieldTypeString FUNCSTAT 1.0 None
11 AREALAND esriFieldTypeDouble AREALAND NaN None
12 AREAWATER esriFieldTypeDouble AREAWATER NaN None
13 STGEOMETRY esriFieldTypeGeometry STGEOMETRY NaN None
14 CENTLAT esriFieldTypeString CENTLAT 11.0 None
15 CENTLON esriFieldTypeString CENTLON 12.0 None
16 INTPTLAT esriFieldTypeString INTPTLAT 11.0 None
17 INTPTLON esriFieldTypeString INTPTLON 12.0 None
18 OBJECTID esriFieldTypeOID OBJECTID NaN None
In [81]:
# Use SQL to return geometries only for Philadelphia County in PA
where_clause = f"STATE = {pa_state_code} AND COUNTY = {philly_county_code}"

# Query for block groups
philly_block_groups = acs.mapservice.layers[10].query(where=where_clause)
/Users/nhand/opt/miniconda3/envs/musa-550-fall-2021/lib/python3.8/site-packages/pyproj/crs/crs.py:68: FutureWarning: '+init=<authority>:<code>' syntax is deprecated. '<authority>:<code>' is the preferred initialization method. When making the change, be mindful of axis order changes: https://pyproj4.github.io/pyproj/stable/gotchas.html#axis-order-changes-in-proj-6
  return _prepare_from_string(" ".join(pjargs))
In [82]:
philly_block_groups.head()
Out[82]:
MTFCC OID GEOID STATE COUNTY TRACT BLKGRP BASENAME NAME LSADC FUNCSTAT AREALAND AREAWATER CENTLAT CENTLON INTPTLAT INTPTLON OBJECTID geometry
0 G5030 20859508776554 421010090004 42 101 009000 4 4 Block Group 4 BG S 127839 0 +39.9572985 -075.1914596 +39.9572985 -075.1914596 3312 POLYGON ((-8370567.253 4859618.633, -8370565.472 4859631.123, -8370556.900 4859684.711, -8370536.195 4859812.656, -8370534.859 4859823.548, -8370528.514 4859863.631, -8370523.616 4859893.548, -837...
1 G5030 20859508883786 421010188002 42 101 018800 2 2 Block Group 2 BG S 59722 0 +39.9975515 -075.1023594 +39.9975515 -075.1023594 3294 POLYGON ((-8360576.329 4865634.793, -8360515.326 4865677.515, -8360459.666 4865714.861, -8360400.110 4865756.856, -8360319.292 4865808.298, -8360276.990 4865744.214, -8360231.238 4865678.968, -836...
2 G5030 20859508883559 421010382002 42 101 038200 2 2 Block Group 2 BG S 250653 0 +39.9901972 -075.1026825 +39.9901972 -075.1026825 3295 POLYGON ((-8360910.732 4864437.488, -8360638.556 4864623.032, -8360383.078 4864797.245, -8360127.377 4864971.898, -8360056.466 4864866.845, -8360015.946 4864806.690, -8359971.084 4864739.561, -835...
3 G5030 20859508934956 421010090001 42 101 009000 1 1 Block Group 1 BG S 67291 0 +39.9616601 -075.1923616 +39.9616601 -075.1923616 3741 POLYGON ((-8370579.498 4860512.096, -8370429.328 4860533.446, -8370392.593 4860539.110, -8370276.820 4860555.377, -8370267.136 4860555.668, -8370251.551 4860447.175, -8370236.857 4860340.427, -837...
4 G5030 20859508776526 421010090002 42 101 009000 2 2 Block Group 2 BG S 83926 0 +39.9597607 -075.1914912 +39.9597607 -075.1914912 3742 POLYGON ((-8370547.215 4860205.940, -8370524.172 4860209.861, -8370508.588 4860211.749, -8370433.447 4860222.061, -8370403.613 4860226.853, -8370397.268 4860228.015, -8370377.008 4860230.484, -837...

Merge the demographic data with geometries

Merge based on multiple columns: state, county, tract, and block group IDs.

The relevant columns are:

  • "STATE", "COUNTY", "TRACT", "BLKGRP" in the spatial data
  • "state", "county", "tract", "block group" in the non-spatial data
In [83]:
philly_demo_final = philly_block_groups.merge(
    philly_demo_data,
    left_on=["STATE", "COUNTY", "TRACT", "BLKGRP"],
    right_on=["state", "county", "tract", "block group"],
)
In [84]:
philly_demo_final.head()
Out[84]:
MTFCC OID GEOID STATE COUNTY TRACT BLKGRP BASENAME NAME_x LSADC FUNCSTAT AREALAND AREAWATER CENTLAT CENTLON INTPTLAT INTPTLON OBJECTID geometry NAME_y B03002_001E B03002_003E B03002_004E B03002_005E B03002_006E B03002_007E B03002_008E B03002_009E B03002_012E state county tract block group
0 G5030 20859508776554 421010090004 42 101 009000 4 4 Block Group 4 BG S 127839 0 +39.9572985 -075.1914596 +39.9572985 -075.1914596 3312 POLYGON ((-8370567.253 4859618.633, -8370565.472 4859631.123, -8370556.900 4859684.711, -8370536.195 4859812.656, -8370534.859 4859823.548, -8370528.514 4859863.631, -8370523.616 4859893.548, -837... Block Group 4, Census Tract 90, Philadelphia County, Pennsylvania 1970.0 1264.0 141.0 0.0 340.0 0.0 6.0 56.0 163.0 42 101 009000 4
1 G5030 20859508883786 421010188002 42 101 018800 2 2 Block Group 2 BG S 59722 0 +39.9975515 -075.1023594 +39.9975515 -075.1023594 3294 POLYGON ((-8360576.329 4865634.793, -8360515.326 4865677.515, -8360459.666 4865714.861, -8360400.110 4865756.856, -8360319.292 4865808.298, -8360276.990 4865744.214, -8360231.238 4865678.968, -836... Block Group 2, Census Tract 188, Philadelphia County, Pennsylvania 1290.0 282.0 622.0 0.0 0.0 0.0 0.0 1.0 385.0 42 101 018800 2
2 G5030 20859508883559 421010382002 42 101 038200 2 2 Block Group 2 BG S 250653 0 +39.9901972 -075.1026825 +39.9901972 -075.1026825 3295 POLYGON ((-8360910.732 4864437.488, -8360638.556 4864623.032, -8360383.078 4864797.245, -8360127.377 4864971.898, -8360056.466 4864866.845, -8360015.946 4864806.690, -8359971.084 4864739.561, -835... Block Group 2, Census Tract 382, Philadelphia County, Pennsylvania 1029.0 718.0 0.0 0.0 52.0 0.0 0.0 32.0 227.0 42 101 038200 2
3 G5030 20859508934956 421010090001 42 101 009000 1 1 Block Group 1 BG S 67291 0 +39.9616601 -075.1923616 +39.9616601 -075.1923616 3741 POLYGON ((-8370579.498 4860512.096, -8370429.328 4860533.446, -8370392.593 4860539.110, -8370276.820 4860555.377, -8370267.136 4860555.668, -8370251.551 4860447.175, -8370236.857 4860340.427, -837... Block Group 1, Census Tract 90, Philadelphia County, Pennsylvania 455.0 338.0 9.0 0.0 54.0 0.0 0.0 11.0 43.0 42 101 009000 1
4 G5030 20859508776526 421010090002 42 101 009000 2 2 Block Group 2 BG S 83926 0 +39.9597607 -075.1914912 +39.9597607 -075.1914912 3742 POLYGON ((-8370547.215 4860205.940, -8370524.172 4860209.861, -8370508.588 4860211.749, -8370433.447 4860222.061, -8370403.613 4860226.853, -8370397.268 4860228.015, -8370377.008 4860230.484, -837... Block Group 2, Census Tract 90, Philadelphia County, Pennsylvania 2273.0 1337.0 176.0 0.0 571.0 0.0 0.0 73.0 116.0 42 101 009000 2

Plot it to make sure it makes sense!

Using geopandas...

In [85]:
# Check the CRS
philly_demo_final.crs
Out[85]:
<Projected CRS: EPSG:3857>
Name: WGS 84 / Pseudo-Mercator
Axis Info [cartesian]:
- E[east]: Easting (metre)
- N[north]: Northing (metre)
Area of Use:
- name: World between 85.06°S and 85.06°N.
- bounds: (-180.0, -85.06, 180.0, 85.06)
Coordinate Operation:
- name: Popular Visualisation Pseudo-Mercator
- method: Popular Visualisation Pseudo Mercator
Datum: World Geodetic System 1984
- Ellipsoid: WGS 84
- Prime Meridian: Greenwich
In [86]:
fig, ax = plt.subplots(figsize=(10,10))

# Plot the choropleth
philly_demo_final.plot(ax=ax, column='B03002_001E', legend=True)

# Format
ax.set_title("Population of Philadelphia by Block Group", fontsize=16)
ax.set_axis_off()

Or using hvplot...

In [87]:
cols = ['NAME_x', 'B03002_001E', 'geometry']
philly_demo_final[cols].hvplot(c='B03002_001E',
                              geo=True, 
                              crs=3857, 
                              legend=True,
                              width=600, 
                              height=400, 
                              cmap='viridis')
Out[87]:

Let's prep the data for the dot map

  1. Rename columns to more user-friendly versions
  2. Add a general "Other" category
In [88]:
# Rename columns
philly_demo_final = philly_demo_final.rename(
    columns={
        "B03002_001E": "Total",  # Total
        "B03002_003E": "White",  # Not Hispanic, White
        "B03002_004E": "Black",  # Not Hispanic, Black
        "B03002_005E": "AI/AN",  # Not Hispanic, American Indian
        "B03002_006E": "Asian",  # Not Hispanic, Asian
        "B03002_007E": "NH/PI",  # Not Hispanic, Native Hawaiian
        "B03002_008E": "Other_",  # Not Hispanic, Other
        "B03002_009E": "Two Plus",  # Not Hispanic, Two or More Races
        "B03002_012E": "Hispanic",  # Hispanic
    }
)
In [89]:
# Add an "Other" column 
cols = ['AI/AN', 'NH/PI','Other_', 'Two Plus']
philly_demo_final['Other'] = philly_demo_final[cols].sum(axis=1)

Define a function to create random points

Given a polygon, create randomly distributed points that fall within the polygon.

In [90]:
def random_points_in_polygon(number, polygon):
    """
    Generate a random number of points within the 
    specified polygon.
    """
    points = []
    min_x, min_y, max_x, max_y = polygon.bounds
    i= 0
    while i < number:
        point = Point(np.random.uniform(min_x, max_x), np.random.uniform(min_y, max_y))
        if polygon.contains(point):
            points.append(point)
            i += 1
    return points

Random points example

In [91]:
# get the first block group polygon in the data set
geo = philly_demo_final.iloc[0].geometry

geo
Out[91]:
In [92]:
fig, ax = plt.subplots(figsize=(6, 6))

# Generate some random points
random_points = random_points_in_polygon(100, geo)

# Plot random points
gpd.GeoSeries(random_points).plot(ax=ax, markersize=20, color="red")

# Plot boundary of block group
gpd.GeoSeries([geo]).plot(ax=ax, facecolor="none", edgecolor="black")

ax.set_axis_off()
In [93]:
def generate_dot_map(data, people_per_dot):
    """
    Given a GeoDataFrame with demographic columns, generate a dot 
    map according to the population in each geometry.
    """
    results = []
    for field in ["White", "Hispanic", "Black", "Asian", "Other"]:

        # generate random points
        pts = data.apply(
            lambda row: random_points_in_polygon(
                row[field] / people_per_dot, row["geometry"]
            ),
            axis=1,
        )

        # combine into single GeoSeries
        pts = gpd.GeoSeries(pts.apply(pd.Series).stack(), crs=data["geometry"].crs)
        pts.name = "geometry"

        # make into a GeoDataFrame
        pts = gpd.GeoDataFrame(pts)
        pts["field"] = field

        # save
        results.append(pts)

    return gpd.GeoDataFrame(pd.concat(results), crs=data["geometry"].crs).reset_index(
        drop=True
    )

Calculate the dot map

In [94]:
dot_map = generate_dot_map(philly_demo_final, people_per_dot=50)
In [95]:
print("number of points = ", len(dot_map))
number of points =  34190
In [96]:
dot_map.tail()
Out[96]:
geometry field
34185 POINT (-8370475.760 4859511.860) Other
34186 POINT (-8370059.090 4859106.669) Other
34187 POINT (-8370502.235 4859479.872) Other
34188 POINT (-8369654.750 4859074.137) Other
34189 POINT (-8370387.951 4859454.266) Other

Now let's plot it

In [103]:
# setup a custom color map from ColorBrewer
from matplotlib.colors import ListedColormap

cmap = ListedColormap(
    ["#3a833c", "#377eb8", "#4daf4a", "#984ea3", "#ff7f00", "#ffff33"]
)
In [104]:
# Convert to 3857
dot_map_3857 = dot_map.to_crs(epsg=3857)
In [105]:
# Initialize the figure and axes
fig, ax = plt.subplots(figsize=(10, 10), facecolor="#cfcfcf")

# Plot
dot_map_3857.plot(
    ax=ax,
    column="field",
    categorical=True,
    legend=True,
    alpha=1,
    markersize=0.5,
    cmap=cmap,
)

# format
ax.set_title("Philadelphia, PA", fontsize=16)
ax.text(
    0.5, 0.95, "1 dot = 50 people", fontsize=12, transform=ax.transAxes, ha="center"
)
ax.set_axis_off()
In [ ]: