Skip to content

PropertyRadar API (5.0.0.0)

PropertyRadar Public API

Download OpenAPI description
Languages
Servers
https://api.propertyradar.com

Properties

Find owners, properties, parcels and documents

Operations

Persons

View and Export owners, including trusts & business entities

Find and purchase phones and emails and get details on property owners, called "Contacts" in the app.

Operations

Lists

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.

Operations

Suggestions

Get typeahead menus

Operations

View address suggestions

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.

Security
api_key_bearer
Query
SuggestionInputstring

Typically this is the first few keystrokes the user has entered. Suggestions are filtered to match.

Example: SuggestionInput=100 LEXINGTON
Limitinteger

Maximum number of records to return.

Default 255
Example: Limit=10
Startinteger

Offset from which to begin returning records. Used for paging.

Default 0
Bodyapplication/jsonrequired
CriteriaArray of objects

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.

Example: [{"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"]}]}]
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"
            ]
          }
        ]
      }
    ]
  }'

Responses

Success

Bodyapplication/json
resultsArray of objects
Response
application/json
{ "results": [ {} ] }

View FIPS and Counties

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.

Security
api_key_bearer
Query
SuggestionInputstring

Typically this is the first few keystrokes the user has entered. Suggestions are filtered to match.

Example: SuggestionInput=Springfield
Bodyapplication/jsonrequired
CriteriaArray of objects

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"]}]

Example: {"Criteria":[{"name":"County","value":["42125"]}]}
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"
          ]
        }
      ]
    }
  }'

Responses

Success

Bodyapplication/json
resultsArray of objects
Response
application/json
{ "results": [ {} ] }

Integrations

Connect PropertyRadar to your sales, marketing, and productivity apps

Operations

Imports

Import and match properties and people

Operations

Automations

Configure Alerts and Automations

Operations

Accounts

Account info and preferences

Operations

Documents

Get and edit documents that make up the transaction history for a property

Operations