[April 18, 2025] V2-Beta-Endpoint-Enhancements
v0.33.0
This release adds support for additional filtering and querying capabilities to the /v2/property_search endpoint.
- Add support for querying by
parcl_property_id - Add support for searching by geographic coordinates
- Add support for filtering by
record_updated_dateandrecord_added_datefor property metadata
Add support for querying by parcl_property_id
parcl_property_idThe /v2/property_search endpoint now supports querying by parcl_property_id. This allows users to search for properties by their unique identifier.
parcl_property_id
A list of unique identifiers for properties.
Add support for searching by geographic coordinates
The /v2/property_search endpoint now supports searching by geographic coordinates. This allows users to search for properties within a specific radius of a given latitude and longitude. Latitude and longitude are specified in decimal degrees and are restricted to the Continental United States, Alaska, and Hawaii.
geo_coordinates
A dictionary containing the following keys:
latitude: The latitude of the center of the search radius.longitude: The longitude of the center of the search radius.radius: The radius of the search in miles, maximum of 10 miles.
Add support for additional filtering using record_updated_date and record_added_date for property metadata
record_updated_date and record_added_date for property metadataThe /v2/property_search endpoint now supports filtering by the date when a property or event was last updated or added to the database.
The following parameters are supported:
record_updated_date
min_record_updated_date: Specifies the beginning of the query period for when property event metadata was last modified in the property record tracking system, inclusive, in ISO 8601 format, i.e. YYYY-MM-DD. Events existing before tracking implementation are marked as 2024-12-13. Defaults to 2024-12-13.max_record_updated_date: Specifies the end of the query period for when property event metadata was last modified in the property record tracking system, inclusive, in ISO 8601 format, i.e. YYYY-MM-DD. Events existing before tracking implementation are marked as 2024-12-13. Defaults to NULL.
record_added_date
min_record_added_date: Specifies the beginning of the query period for when properties were added to the property record tracking system, inclusive, in ISO 8601 format, i.e. YYYY-MM-DD. Properties existing before tracking implementation are marked as 2024-12-13. Defaults to 2024-12-13.max_record_added_date: Specifies the end of the query period for when properties were added to the property record tracking system, inclusive, in ISO 8601 format, i.e. YYYY-MM-DD. Properties existing before tracking implementation are marked as 2024-12-13. Defaults to NULL.
