Property#
Introduction#
- Property can:
Look up U.S. properties by address, county FIPS (Federal Information Processing Standards) and APN (Assessor’s Parcel Number), or Melissa Address Key (MAK)
Find the owner’s name, address, and value of the home
Learn about the various properties and characteristics of a property such as size, rooms, number of buildings, amenities, improvements, etc.
Search through historical deeds for a home to see past buyers and sales
Find other properties owned by a homeowner
Click here to learn more about the Property Cloud API.
Licensing#
The License Key is a software key required to use the web service. You will receive your license key from your Melissa representative. If you don’t have a license key, contact the Melissa sales team at Sales@Melissa.com or 800-MELISSA ext. 3 (800-635-4772 ext. 3). Without a license key, Property will not function.
Initialization#
There are two different constructors that you can utilize when initializing Property.
Initialize the Cloud API object with a license key
Property property = new Property(MELISSA_LICENSE_KEY);
property = Property(MELISSA_LICENSE_KEY)
Initialize the Cloud API object, which will read the license key from the environment variable MD_LICENSE or configured using a set method
Click here to learn more about setting up the environment variable.
Property property = new Property()
property = Property()
Configuration#
Property supports both GET and POST requests.
(GET) Using one of three ways to configure each respective parameter
(POST) Using the Set Post Body Method to pass a PropertyPostRequest object as the pre-constructed post body containing all parameters and records to process
(POST) Using Set Methods to configure base parameters and the Add Records Method to pass records to process
Requests#
GET#
To send a GET request, there are three ways you can configure the parameters to make a request.
Method 1: Using the Set Value Method to specify the parameter and value you want to set it to
Method 2: Using direct property access to set parameter values
Method 3: Using specialized Set Methods to set parameter values
Method 1: Using Set Value Method#
This function allows you to specify input parameters and the values you went to set them to.
Format
property.SetValue("AddressLine1", ADDRESS_LINE_1);
property.SetValue("City", CITY);
property.SetValue("State", STATE);
property.set_value("address_line_1", ADDRESS_LINE_1)
property.set_value("city", CITY)
property.set_value("state", STATE)
Example
property.SetValue("AddressLine1", "22382 Avenida Empresa");
property.SetValue("City", "Rancho Santa Margarita");
property.SetValue("State", "CA");
property.set_value("address_line_1", "22382 Avenida Empresa")
property.set_value("city", "Rancho Santa Margarita")
property.set_value("state", "CA")
Method 2: Using Direct Property Access#
This allows you to set values directly using the Cloud API’s parameter names.
Format
property.AddressLine1 = ADDRESS_LINE_1;
property.City = CITY;
property.State = STATE;
property.address_line_1 = ADDRESS_LINE_1
property.city = CITY
property.state = STATE
Example
property.AddressLine1 = "22382 Avenida Empresa";
property.City = "Rancho Santa Margarita";
property.State = "CA";
property.address_line_1 = "22382 Avenida Empresa"
property.city = "Rancho Santa Margarita"
property.state = "CA"
Method 3: Using Specialized Methods#
These functions allow you to set the input parameters for the Cloud API.
See Set Methods for a list of available parameters.
Format
property.SetAddressLine1(ADDRESS_LINE_1);
property.SetCity(CITY);
property.SetState(STATE);
property.set_address_line_1(ADDRESS_LINE_1)
property.set_city(CITY)
property.set_state(STATE)
Example
property.SetAddressLine1("22382 Avenida Empresa");
property.SetCity("Rancho Santa Margarita");
property.SetState("CA");
property.set_address_line_1("22382 Avenida Empresa")
property.set_city("Rancho Santa Margarita")
property.set_state("CA")
POST#
To send a POST request, there are two ways you can configure the parameters to make a request.
Method 1: Using the Set Post Body Method to pass a PropertyPostRequest object as the pre-constructed post body containing all parameters and records to process
Method 2: Using Set Methods to configure base parameters and the Add Records Method to pass records to process
A maximum of 100 records can be sent per request.
Method 1: Set Post Body#
This function allows you to pass a pre-constructed post body with all parameters and records for POST requests.
Format
property.SetPostBody(new PropertyPostRequest
{
CustomerId = MELISSA_LICENSE_KEY,
TotalRecords = "2",
Records = new List<PropertyRecordRequest>
{
new PropertyRecordRequest
{
RecordId = RECORD_ID,
AddressLine1 = ADDRESS_LINE_1,
City = CITY,
State = STATE,
PostalCode = POSTAL_CODE
},
new PropertyRecordRequest
{
RecordId = RECORD_ID,
AddressLine1 = ADDRESS_LINE_1,
City = CITY,
State = STATE,
PostalCode = POSTAL_CODE
}
}
});
property.set_post_body(PropertyPostRequest(
customer_id = MELISSA_LICENSE_KEY,
total_records = "2",
records=[
PropertyRecordRequest(
record_id = RECORD_ID,
address_line_1 = ADDRESS_LINE_1,
city = CITY,
state = STATE,
postal_code = POSTAL_CODE
),
PropertyRecordRequest(
record_id = RECORD_ID,
address_line_1 = ADDRESS_LINE_1,
city = CITY,
state = STATE,
postal_code = POSTAL_CODE
)
]
))
Example
property.SetPostBody(new PropertyPostRequest
{
CustomerId = MELISSA_LICENSE_KEY,
TotalRecords = "2",
Records = new List<PropertyRecordRequest>
{
new PropertyRecordRequest
{
RecordId = "1",
AddressLine1 = "22382 Avenida Empresa",
City = "RSM",
State = "CA",
PostalCode = "92688"
},
new PropertyRecordRequest
{
RecordId = "2",
AddressLine1 = "1 Microsoft Way",
City = "Redmond",
State = "WA",
PostalCode = "98052"
}
}
});
property.set_post_body(PropertyPostRequest(
customer_id = MELISSA_LICENSE_KEY,
total_records = "2",
records=[
PropertyRecordRequest(
record_id = "1",
address_line_1 = "22382 Avenida Empresa",
city = "RSM",
state = "CA",
postal_code = "92688"
),
PropertyRecordRequest(
record_id = "2",
address_line_1 = "1 Microsoft Way",
city = "Redmond",
state = "WA",
postal_code = "98052"
)
]
))
Method 2: Set Input Parameters and Add Records#
You will use set methods to configure the base parameters (license, options, transmission reference), and use the function below to add records for POST requests.
See Set Methods for a list of available parameters.
Format
property.SetLicense(MELISSA_LICENSE_KEY);
property.SetTotalRecords("2");
property.AddRecord(new PropertyRecordRequest
{
RecordId = RECORD_ID,
AddressLine1 = ADDRESS_LINE_1,
City = CITY,
State = STATE,
PostalCode = POSTAL_CODE
});
property.AddRecord(new PropertyRecordRequest
{
RecordId = RECORD_ID,
AddressLine1 = ADDRESS_LINE_1,
City = CITY,
State = STATE,
PostalCode = POSTAL_CODE
});
property_instance = Property(MELISSA_LICENSE_KEY)
property_instance.add_record(PropertyRecordRequest(
record_id = RECORD_ID,
address_line_1 = ADDRESS_LINE_1,
city = CITY,
state = STATE,
postal_code = POSTAL_CODE
))
property_instance.add_record(PropertyRecordRequest(
record_id = RECORD_ID,
address_line_1 = ADDRESS_LINE_1,
city = CITY,
state = STATE,
postal_code = POSTAL_CODE
))
Example
property.SetLicense(MELISSA_LICENSE_KEY);
property.SetTotalRecords("2");
property.AddRecord(new PropertyRecordRequest
{
RecordId = "1",
AddressLine1 = "22382 Avenida Empresa",
City = "RSM",
State = "CA",
PostalCode = "92688"
});
property.AddRecord(new PropertyRecordRequest
{
RecordId = "2",
AddressLine1 = "1 Microsoft Way",
City = "Redmond",
State = "WA",
PostalCode = "98052"
});
property_instance = Property(MELISSA_LICENSE_KEY)
property_instance.add_record(PropertyRecordRequest(
record_id = "1",
address_line_1 = "22382 Avenida Empresa",
city = "RSM",
state = "CA",
postal_code = "92688"
))
property_instance.add_record(PropertyRecordRequest(
record_id = "2",
address_line_1 = "1 Microsoft Way",
city = "Redmond",
state = "WA",
postal_code = "98052"
))
Response#
When submitting a request, you have the option to either get the response as a string or encapsulate the response into the respective Cloud API response object.
As a String#
Submit a GET or POST request and get the response as a string.
string response = property.GetLookupProperty<string>();
response = property.get_lookup_property(str)
response = property.post_lookup_property(str)
response = property.post_lookup_property(str)
As a Response Object#
Submit a GET or POST request and encapsulate the response into the Cloud API response object.
PropertyResponse responseObject = property.GetLookupProperty<PropertyResponse>();
response = property.get_lookup_property(PropertyResponse)
PropertyResponse responseObject = property.PostLookupProperty<PropertyResponse>();
response = property.post_lookup_property(PropertyResponse)
Accessing Values#
When encapsulating the response into the Cloud API’s respective response object, there are three ways to access values. The response object structure matches the respective Cloud API’s response format.
Click here to learn more about the Property response format.
The record responses are typically stored in a list. In the examples below, record represents an individual record at an arbitrary position within this list.
1. Using the Get Value Method:
Pass the field name as a string to the Get Value Method, and it will return the corresponding field value.
record.GetValue("RecordID");
record.GetValue("Results");
record.get_value("RecordID")
record.get_value("Results")
2. Accessing Properties directly
Values can be accessed directly using the response object’s field names.
record.RecordID;
record.Results;
record.record_id
record.results
3. Use Specialized Methods
Use get methods corresponding to field name to get the field value.
record.GetRecordID();
record.GetResults();
record.get_record_id()
record.get_results()
Methods#
The methods listed below pertain to the Property Cloud API object.
For methods related to the respective Cloud API’s response object click here.
Constructors#
These methods initialize and configure instances of the Cloud API object. Use these methods to create a new object, optionally providing initial values such as a license string to customize the instance during its creation.
Method |
Description |
---|---|
|
Constructor to initialize the Property object. |
|
Constructor to initialize the Property object with a license string. |
Method |
Description |
---|---|
|
Constructor to initialize the Property object. |
|
Constructor to initialize the Property object with a license string. |
Set Methods#
These methods configure or modify parameters at the record level for the Cloud API object. Use these methods to make adjustments to the parameters during the execution of the Cloud API, ensuring flexibility in customizing API requests.
Method |
Description |
---|---|
|
Set the base URL. |
|
Set the license string. |
|
Set the endpoint. |
|
Set the format. |
|
Set the address key. |
|
Set the address line 1. |
|
Set the address line 2. |
|
Set the APN. |
|
Set the city. |
|
Set the country. |
|
Set the FIPS. |
|
Set the free form. |
|
Set the MAK. |
|
Set the state. |
|
Set the postal code. |
|
Set the transmission reference. |
|
Set the columns. |
|
Set the option. |
|
Set the owner MAK. |
|
Set the total records. |
|
Set the batch post body for post requests. |
|
Set the input parameter to a specified value. |
|
Set the post body for post requests. |
Method |
Description |
---|---|
|
Set the base URL. |
|
Set the license string. |
|
Set the endpoint. |
|
Set the format. |
|
Set the address key. |
|
Set the address line 1. |
|
Set the address line 2. |
|
Set the APN. |
|
Set the city. |
|
Set the country. |
|
Set the FIPS. |
|
Set the free form. |
|
Set the MAK. |
|
Set the state. |
|
Set the postal code. |
|
Set the transmission reference. |
|
Set the columns. |
|
Set the option. |
|
Set the owner MAK. |
|
Set the total records. |
|
Set the batch post body for post requests. |
|
Set the input parameter to a specified value. |
|
Set the post body for post requests. |
Get Methods#
These methods retrieve parameter values from the Cloud API object. Use these methods to access the parameters configured for the Cloud API at the record level, providing insight into the current state of the object’s settings.
Method |
Description |
---|---|
|
Get the base URL. |
|
Get the license string. |
|
Get the endpoint. |
|
Get the format. |
|
Get the address key. |
|
Get the address line 1. |
|
Get the address line 2. |
|
Get the APN. |
|
Get the city. |
|
Get the country. |
|
Get the FIPS. |
|
Get the free form. |
|
Get the MAK. |
|
Get the state. |
|
Get the postal code. |
|
Get the transmission reference. |
|
Get the columns. |
|
Get the option. |
|
Get the owner MAK. |
|
Get the total records. |
|
Get the value of an input parameter. |
|
Get the batch post body for post requests. |
|
Get the post body for post requests. |
Method |
Description |
---|---|
|
Get the base URL. |
|
Get the license string. |
|
Get the endpoint. |
|
Get the format. |
|
Get the address key. |
|
Get the address line 1. |
|
Get the address line 2. |
|
Get the APN. |
|
Get the city. |
|
Get the country. |
|
Get the FIPS. |
|
Get the free form. |
|
Get the MAK. |
|
Get the state. |
|
Get the postal code. |
|
Get the transmission reference. |
|
Get the columns. |
|
Get the option. |
|
Get the owner MAK. |
|
Get the total records. |
|
Get the value of an input parameter. |
|
Get the batch post body for post requests. |
|
Get the post body for post requests. |
Class Methods#
These methods perform service-level operations, handling the core processing and interactions for the Cloud API object. Use these methods to execute primary functionalities such as assembling records, clearing records, and making API requests.
Method |
Description |
---|---|
|
Add record to internal list for post body assembly. |
|
Clear the internal list of records. |
|
Endpoint: /v4/WEB/LookupProperty Makes the synchronous GET request to the CloudAPI and returns the response (string or deserialized response object). |
|
Endpoint: /v4/WEB/LookupProperty Makes the asynchronous GET request to the CloudAPI and returns the response. |
|
Endpoint: /v4/WEB/LookupProperty Makes synchronous POST request to the CloudAPI using the post body and returns the response (string or deserialized response object). |
|
Endpoint: /v4/WEB/LookupProperty Makes synchronous POST request to the CloudAPI using the post body and returns the response (string or deserialized response object). |
|
Endpoint: /v4/WEB/LookupDeeds Makes the synchronous GET request to the CloudAPI and returns the response (string or deserialized response object). |
|
Endpoint: /v4/WEB/LookupDeeds Makes the asynchronous GET request to the CloudAPI and returns the response. |
|
Endpoint: /v4/WEB/LookupDeeds Makes synchronous POST request to the CloudAPI using the post body and returns the response (string or deserialized response object). |
|
Endpoint: /v4/WEB/LookupDeeds Makes synchronous POST request to the CloudAPI using the post body and returns the response (string or deserialized response object). |
|
Endpoint: /v4/WEB/LookupHomesByOwner Makes the synchronous GET request to the CloudAPI and returns the response (string or deserialized response object). |
|
Endpoint: /v4/WEB/LookupHomesByOwner Makes the asynchronous GET request to the CloudAPI and returns the response. |
|
Endpoint: /v4/WEB/LookupHomesByOwner Makes synchronous POST request to the CloudAPI using the post body and returns the response (string or deserialized response object). |
|
Endpoint: /v4/WEB/LookupHomesByOwner Makes synchronous POST request to the CloudAPI using the post body and returns the response (string or deserialized response object). |
|
Makes synchronous getversion request and returns parsed Cloud API version. |
|
Makes asynchronous getversion request and returns parsed Cloud API version. |
Method |
Description |
---|---|
|
Add record to internal list for post body assembly. |
|
Clear the internal list of records. |
|
Endpoint: /v4/WEB/LookupProperty Makes the synchronous GET request to the CloudAPI and returns the response (string or deserialized response object). |
|
Endpoint: /v4/WEB/LookupProperty Makes the asynchronous GET request to the CloudAPI and returns the response. |
|
Endpoint: /v4/WEB/LookupProperty Makes synchronous POST request to the CloudAPI using the post body and returns the response (string or deserialized response object). |
|
Endpoint: /v4/WEB/LookupProperty Makes synchronous POST request to the CloudAPI using the post body and returns the response (string or deserialized response object). |
|
Endpoint: /v4/WEB/LookupDeeds Makes the synchronous GET request to the CloudAPI and returns the response (string or deserialized response object). |
|
Endpoint: /v4/WEB/LookupDeeds Makes the asynchronous GET request to the CloudAPI and returns the response. |
|
Endpoint: /v4/WEB/LookupDeeds Makes synchronous POST request to the CloudAPI using the post body and returns the response (string or deserialized response object). |
|
Endpoint: /v4/WEB/LookupDeeds Makes synchronous POST request to the CloudAPI using the post body and returns the response (string or deserialized response object). |
|
Endpoint: /v4/WEB/LookupHomesByOwner Makes the synchronous GET request to the CloudAPI and returns the response (string or deserialized response object). |
|
Endpoint: /v4/WEB/LookupHomesByOwner Makes the asynchronous GET request to the CloudAPI and returns the response. |
|
Endpoint: /v4/WEB/LookupHomesByOwner Makes synchronous POST request to the CloudAPI using the post body and returns the response (string or deserialized response object). |
|
Endpoint: /v4/WEB/LookupHomesByOwner Makes synchronous POST request to the CloudAPI using the post body and returns the response (string or deserialized response object). |
|
Makes synchronous getversion request and returns parsed Cloud API version. |
|
Makes asynchronous getversion request and returns parsed Cloud API version. |