/api/property/neighborsReturns nearby comparable parcels for a subject property. County-specific logic determines the search strategy — spatial radius for ArcGIS counties, address-adjacent lookup for others. Ideal for appraisal protest and CMA workflows.
Subject property address. Used as the center point for the neighbor search.
County hint. If omitted, ParcelKit geocodes the address to determine the county.
Latitude in decimal degrees. Required for counties using spatial radius queries.
Longitude in decimal degrees. Pair with lat.
curl -G https://api.parcelkit.us/api/property/neighbors \
-H "x-api-key: sk_live_your_key" \
--data-urlencode "address=10 Woodborough Way, Spring, TX 77389"{
"county": "Harris County",
"subject": "10 WOODBOROUGH WAY, SPRING, TX 77389",
"neighbors": [
{
"address": "14 WOODBOROUGH WAY, SPRING, TX 77389",
"appraisedValue": 1065676,
"livingAreaSqft": 4176
},
{
"address": "6 WOODBOROUGH WAY, SPRING, TX 77389",
"appraisedValue": 998400,
"livingAreaSqft": 3850
},
{
"address": "18 WOODBOROUGH WAY, SPRING, TX 77389",
"appraisedValue": 1120000,
"livingAreaSqft": 4510
}
],
"source": "live_gis"
}curl -G https://api.parcelkit.us/api/property/neighbors \
-H "x-api-key: sk_live_your_key" \
--data-urlencode "address=10 Woodborough Way, Spring, TX 77389" \
--data-urlencode "county=Harris" \
--data-urlencode "lat=30.10744" \
--data-urlencode "lon=-95.53443"The source field in the response indicates the lookup strategy used — live_gis for spatial ArcGIS queries, address_adjacent for address-based fallback. Spatial results are more geographically accurate; adjacent results follow street numbering.
GET /api/property/neighbors?address=10+Woodborough+Way%2C+Spring%2C+TX+77389