Validate addresses, points, and shapes against official boundaries—zip codes, counties, school districts, custom service areas, and more.
Use our REST endpoint to check if a point falls inside selected boundaries. Replace YOUR_API_KEY
with your key.
curl -X POST \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
https://api.boundaryiq.dev/v1/check \
-d '{
"point": { "lat": 40.472, "lng": -78.550 },
"datasets": ["us_zips", "counties", "school_districts"]
}'
Response sample
{
"point": { "lat": 40.472, "lng": -78.55 },
"results": [
{ "dataset": "us_zips", "match": true, "id": "16641", "name": "Gallitzin" },
{ "dataset": "counties", "match": true, "id": "42021", "name": "Cambria County" },
{ "dataset": "school_districts", "match": false }
]
}
Everything you need to ship reliable boundary checks fast.
Indexes + smart caching keep typical queries under 100ms.
Curated, versioned, and sourced from official providers.
Transparent monthly tiers. No surprise overages.
Clean REST, thoughtful errors, typed SDKs, generous sandbox.
Starter includes generous monthly requests. No credit card to begin.