v1
latestOpenAPI 3.0.02026-07-26432882.9 KBPoint - Latitude and Longitude
This endpoint delivers parcels using latitude and longitude points. You can add a radius zone to the point or points and limit the amount of parcels returned in the response. Parameter 'geojson' takes priority if Lat/Lon is used in same request. This endpoint allows access to test all of our premium matched datasets. Attention API Trial Token Users: Data is restricted to 7 counties. Please only use data from one of the restricted counties.
Query parameters
Longitude point
Latitude point
(Default: 0, Maximum: 32000) Radius in meters for which all Parcel records will be returned if they are within the radius zone from latitude and longitude point.
Maximum number of Parcel Records to return.
Set to true to enable count of parcels in query.
Default false. A true value allows county-specific fields to be passed through beyond standard schema fields only.
Default false. A true value shows the naming convention for each standardized schema field.
Default true. A false value returns the first parcel if geometries are identical.
Request body
Example request
{
"geojson": {
"type": "Feature",
"geometry": {
"coordinates": [
[
-97.774811,
54.627318
],
[
-97.77785381153151,
54.62696250754314
]
],
"type": "MultiPoint"
}
}
}Response
A list of parcel features.
Example response
{
"parcels": {
"type": "FeatureCollection",
"features": [
{
"type": "Feature"
}
]
}
}