Open-data API

Hundreds of fields for any U.S. address.
One API call.

FastOpenData turns a swamp of Census CSVs, TIGER shapefiles, and outdated FTP servers into a single, clean, fast HTTP interface. Stop reinventing the wheel.

GET /v1/lookup
# Any U.S. address
curl https://api.fastopendata.io/v1/lookup \
  -H "Authorization: Bearer $API_KEY" \
  -d '{"address": "350 5th Ave, New York, NY"}'

Response · 43 ms
{
  "address": "350 5th Ave, New York, NY 10118",
  "tract":   "36061010900",
  "county":  "New York County, NY",
  "acs": {
    "median_household_income": 94800,
    "pct_college_educated":    0.71,
    "population_density_sqmi": 72140
  },
  "geo": {
    "lat": 40.7484, "lon": -73.9967,
    "timezone": "America/New_York"
  },
  // + 200 more fields …
}
200+
Fields per address
140M
U.S. addresses covered
<50ms
Median response time
7
Source datasets
How it works

From address to insights in one round-trip.

No SDK. No schema to learn. No data pipeline to maintain.

01 — Request

Send any U.S. address.

POST a freeform address string or a lat/lon pair. The API geocodes, resolves to a Census tract, and enriches — all in one call.

02 — Enrich

We join 7 source datasets.

ACS demographics, TIGER geography, OSM points of interest, USAspending contracts, and more — prejoined, normalized, typed, and refreshed weekly.

03 — Build

Use the fields you need.

Filter by ?fields= to return only what your app uses. Every field has a stable name, a type signature, and a source citation.

Data catalog

Seven curated sources. One interface.

Every dataset is kept up to date automatically — no cronjobs on your end.

Browse all 200+ fields

Stop reinventing the wheel.

The data is public. The joins are our problem. Get a free API key and query your first address in under five minutes.