BoundaryIQ icon BoundaryIQ

API Overview

BoundaryIQ provides a simple REST API for checking whether a point or geometry lies within one or more boundaries.

POST /v1/check
Authorization: Bearer <YOUR_API_KEY>
Content-Type: application/json

{
  "point": {"lat": 40.472, "lng": -78.550},
  "datasets": ["us_zips", "counties", "school_districts"]
}

Authentication

Send your API key in the Authorization header using the Bearer scheme.

Authorization: Bearer YOUR_API_KEY

Requests

Supply either a single point or a GeoJSON geometry. Include a list of datasets to test against.

Responses

Each dataset entry returns match (boolean) and optional metadata like id and name.

Errors

Standard HTTP status codes; error body includes code, message, and requestId.

SDKs

  • JavaScript/TypeScript (coming soon)
  • .NET (coming soon)