PropertyRadar Public API
PropertyRadar API (5.0.0.0)
About Lists
View and manage potential customers and properties, by sorting properties into organized groups, called lists
PropertyRadar supports 3 different kinds of lists, and each type can be monitored or unmonitored.
Dynamic lists
Dynamic lists are created from a Criteria object, and are updated automatically when monitored. If a Dynamic list is unmonitored, it is updated whenever you make a call to view the items in the list, such as Properties from Criteria (using InList), or View list items.
Static lists
Static Lists are created by adding properties to a list using Add items to list. They do not have search criteria. Properties on Static lists only change when you add or remove properties, or set up an automation to do so.
Import lists
With import lists, you provide raw unmatched data such as addresses or emails via Match and import to list, and we match that data with our records and create a list of matching records.
Request
Returns Site Addresses based on SuggestionInput and an optional criteria object. Returns a criteria object which specifies City, State, etc. for the given address.
Typically this is the first few keystrokes the user has entered. Suggestions are filtered to match.
Optional Restricts the suggestions to the values compatible with the provided criteria. For instance, if the criteria contains State set to Oregon, then if we are asking for City suggestions, only cities within Oregon will be provided.
ℹ️ TIP - In suggestions the Criteria object has a different purpose in the response, see the response documentation.
- https://api.propertyradar.com/v1/suggestions/SiteAddress
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://api.propertyradar.com/v1/suggestions/SiteAddress?SuggestionInput=100+LEXINGTON&Limit=10&Start=0' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"Criteria": [
{
"name": "State",
"value": [
"OR"
]
},
{
"name": "ZipFive",
"value": [
97202,
97212
]
},
{
"name": "Beds",
"value": [
[
6,
null
]
]
},
{
"name": "Pool",
"value": [
1
]
},
{
"name": "PropertyType",
"value": [
{
"name": "PType",
"value": [
"SFR"
]
},
{
"name": "AdvancedPropertyType",
"value": [
"106",
"119",
"131"
]
}
]
}
]
}'{ "results": [ { … } ] }
Request
Returns valid Counties and their associated FIPS based on SuggestionInput and an optional criteria object. Returns a criteria object which specifies the FIPS for the given County.
Optional Restricts the suggestions to the values compatible with the provided criteria. For instance, if the criteria contains State set to PA, only Counties in Pennsylvania will be returned. Example: [{"name": "State","value": ["PA"]}]
- https://api.propertyradar.com/v1/suggestions/County
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://api.propertyradar.com/v1/suggestions/County?SuggestionInput=Springfield' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"Criteria": {
"Criteria": [
{
"name": "County",
"value": [
"42125"
]
}
]
}
}'{ "results": [ { … } ] }