GET v1/parcels/ByAddress?streetName={streetName}&addressNumber={addressNumber}&pageNumber={pageNumber}&pageSize={pageSize}&sortColumn={sortColumn}&sortOrder={sortOrder}
Search for parcels by street address. This search will include the parcel address as well as any building addresses (residential or commercial) on the parcel. Will returns parcels with ranged addresses where the number would fall within the range.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
streetName |
(Required) Name of the street, excluding any direction or suffix |
string |
Default value is |
addressNumber |
(Optional) Address number, number only (no ranges, unit numbers, etc) |
integer |
Default value is 0 |
pageNumber |
Page number |
integer |
Default value is 1 |
pageSize |
Number of results per page |
integer |
Default value is 10 |
sortColumn |
Column to sort results by. NOTE: Default is RELEVANCE, which will sort by address but prioritize parcels where there is an exact match on the parcel address rather than a bulding range match. (Example: Buildings may contain an address range such as 1000 - 2000 HIGH ST, which would normally sort before an exact match on 1351 HIGH ST.) |
ParcelSearchSortColumn |
Default value is RELEVANCE |
sortOrder |
Order to sort results by. Ignored if RELEVANCE sort. |
SearchSortOrder |
Default value is ASC |
Body Parameters
None.
Response Information
Resource Description
List of a single page of search results
ParcelSearchName | Description | Type | Additional information |
---|---|---|---|
ParcelSearchType |
Original search type requested |
ParcelSearchType |
None. |
TotalCount |
Total number of results matching the search criteria |
integer |
None. |
PageNumber |
Which page of results are in this response (starting at 1) |
integer |
None. |
PageCount |
How many pages of results are available |
integer |
None. |
PageSize |
How many results are on each page |
integer |
None. |
SortColumn |
Which column is used to sort the results |
ParcelSearchSortColumn |
None. |
SortOrder |
Which order the results are sorted in |
SearchSortOrder |
None. |
Results |
List of search results |
Collection of ParcelSummary |
None. |
Response Formats
application/json, text/json
{ "ParcelSearchType": "OWNER", "TotalCount": 1, "PageNumber": 2, "PageCount": 3, "PageSize": 4, "SortColumn": "RELEVANCE", "SortOrder": "ASC", "Results": [ { "ParcelNumber": "sample string 1", "ParcelAddress": "sample string 2", "Owners": [ "sample string 1", "sample string 2" ], "PhotoUrl": "sample string 3", "LastSaleDate": "2025-08-24T16:38:31.5343625-04:00", "LastSaleAmount": 1.0, "TotalMarketValue": 4.0, "Latitude": 1.1, "Longitude": 1.1 }, { "ParcelNumber": "sample string 1", "ParcelAddress": "sample string 2", "Owners": [ "sample string 1", "sample string 2" ], "PhotoUrl": "sample string 3", "LastSaleDate": "2025-08-24T16:38:31.5343625-04:00", "LastSaleAmount": 1.0, "TotalMarketValue": 4.0, "Latitude": 1.1, "Longitude": 1.1 } ] }
application/xml, text/xml
<ParcelSearch xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MobileApi.Models"> <PageCount>3</PageCount> <PageNumber>2</PageNumber> <PageSize>4</PageSize> <ParcelSearchType>OWNER</ParcelSearchType> <Results> <ParcelSummary> <LastSaleAmount>1</LastSaleAmount> <LastSaleDate>2025-08-24T16:38:31.5343625-04:00</LastSaleDate> <Latitude>1.1</Latitude> <Longitude>1.1</Longitude> <Owners xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d4p1:string>sample string 1</d4p1:string> <d4p1:string>sample string 2</d4p1:string> </Owners> <ParcelAddress>sample string 2</ParcelAddress> <ParcelNumber>sample string 1</ParcelNumber> <PhotoUrl>sample string 3</PhotoUrl> <TotalMarketValue>4</TotalMarketValue> </ParcelSummary> <ParcelSummary> <LastSaleAmount>1</LastSaleAmount> <LastSaleDate>2025-08-24T16:38:31.5343625-04:00</LastSaleDate> <Latitude>1.1</Latitude> <Longitude>1.1</Longitude> <Owners xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d4p1:string>sample string 1</d4p1:string> <d4p1:string>sample string 2</d4p1:string> </Owners> <ParcelAddress>sample string 2</ParcelAddress> <ParcelNumber>sample string 1</ParcelNumber> <PhotoUrl>sample string 3</PhotoUrl> <TotalMarketValue>4</TotalMarketValue> </ParcelSummary> </Results> <SortColumn>RELEVANCE</SortColumn> <SortOrder>ASC</SortOrder> <TotalCount>1</TotalCount> </ParcelSearch>