Skip to main content

Parcels (V2)

Retrieves parcel and footprints data based on batches of U.S. location inputs. The data extraction is parcel based, meaning it retrieves data on all the buildings within the parcel at the requested location.

POST https://us-api.geox.ai/v2/parcels

Request Overview

  • Batch Support: Process up to 500 locations in a single batch.
  • Tracking: For each requested location, you can provide an input_id for tracking results. This field can be left empty if not needed.
  • Geocoding Confidence: V2 provides a geocoding_confidence score per parcel.

Request Body

NameTypeDescription
locationsarray[Location]Required. List of up to 500 location objects.

Location Object

FieldTypeDescription
input_idstringOptional tracking ID for the location.
addressstringAddress in free text format.
coordinatesobjectLat/Lng object: {"lat": float, "lng": float}.

Response Schema

The response includes batch processing metadata and a list of results. Each result item contains tracking information and the parcel/footprints data.

{
"meta": { ...Meta Object },
"data": [
  {
    "input_id": "string",
    "parcel_id": "string",
    "parcel": { ...Parcel Object },
    "footprints": [{ ...Footprint Object }]
  }
]
}

Example Usage

Example Request

curl -X POST "https://us-api.geox.ai/v2/parcels" \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"locations": [
{
"input_id": "req_1",
"address": "1600 Amphitheatre Parkway, Mountain View, CA"
}
]
}'