Juricode

A Juricode is the complete stack of jurisdictions that govern a single point on the map — from the federal government down to your local school district.

Enter any U.S. address and we geocode it to precise coordinates, then query every jurisdiction boundary in our database to find the ones that contain that point. The result is a layered view of who governs here.

1

Address

Any U.S. street address — a home, office, landmark.

2

Geocode

Convert to precise latitude/longitude coordinates.

3

Spatial Query

PostGIS ST_Contains against every jurisdiction boundary (TIGER shapefiles).

4

Juricode

The full governance stack — federal, state, county, congressional, school district, city.

Try It

Example addresses

API Access

REST Endpoint

GET
/api/v1/juricode?address=300+Hemlock+St,+Vacaville,+CA

Returns the full Juricode for any U.S. address — geocoded coordinates and every jurisdiction layer. Add geometry=full for high-resolution boundary shapes.

Response Shape

{
  "geocode": { "lat": 38.35, "lng": -121.98 },
  "jurisdictions": [
    { "name": "United States", "level": "federal" },
    { "name": "California", "level": "state" },
    { "name": "Solano County", "level": "county" },
    { "name": "Vacaville", "level": "place" }
  ]
}

All data is open. Full structured data is available in the jurisdictional-data repository.

Coverage

Layer types
  • Federal
  • State
  • County
  • Congressional District
  • State Legislative (Upper & Lower)
  • Unified School District
  • Place / Municipality
  • County Subdivision
Data source

Boundaries come from the U.S. Census Bureau TIGER/Line shapefiles (2025 vintage). Imported as PostGIS geometries and indexed with GIST for fast spatial queries.

Completeness

Full coverage for states, counties, and congressional districts. Place-level coverage is expanding — school districts and county subdivisions are being added by state.