Quickstart#

Introduction#

Welcome to the Melissa Property cloud service. This service returns information about a given parcel of property, including: assessed value; last sale price; current mortgage; physical dimensions of land; and square footage. The level of detail may vary according to location.

Property can be used to:

  • 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

System Requirements#

  • SSL/TLS 1.2+

Getting Started - What Can I Do?#

Lookup Deeds#

Find historical deeds for a property.

Endpoint#

/v4/WEB/LookupDeeds

Click here to go to the full endpoint documentation.

Try it Now#

  • GET JSON
  • POST JSON
  • GET XML
  • POST XML
curl -X GET "https://property.melissadata.net/v4/WEB/LookupDeeds?\
&t=Test\
&id={{customerId}}\
&cols=\
&opt=page:1\
&mak=\
&fips=\
&apn=\
&txid=\
&ff=710%20Winston%20Ln%20Sugar%20Land%20TX\
&format=JSON" \
-H "Content-Type: application/json" \
-H "Accept: application/json"
curl -X POST "https://property.melissadata.net/v4/WEB/LookupDeeds" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{
      "TransmissionReference": "Test",
      "CustomerID": "{{customerId}}",
      "Columns": "",
      "Options": "page:1",
      "PropertyMAK": "",
      "FIPS": "",
      "APN": "",
      "TransactionID": "",
      "FreeForm": "710 Winston Ln Sugar Land TX"
    }
   '
curl -X GET "https://property.melissadata.net/v4/WEB/LookupDeeds?\
&t=Test\
&id={{customerId}}\
&cols=\
&opt=page:1\
&mak=\
&fips=\
&apn=\
&txid=\
&ff=710%20Winston%20Ln%20Sugar%20Land%20TX\
&format=XML" \
-H "Content-Type: application/xml" \
-H "Accept: application/xml"
curl -X POST "https://property.melissadata.net/v4/WEB/LookupDeeds" \
-H "Content-Type: application/xml" \
-H "Accept: application/xml" \
-d '<LooupDeedsRequest>
      <TransmissionReference>Test</TransmissionReference>
      <CustomerID>{{customerId}}</CustomerID>
      <Columns/>
      <Options>page:1</Options>
      <PropertyMAK/>
      <FIPS/>
      <APN/>
      <TransactionID/>
      <FreeForm>710 Winston Ln Sugar Land TX</FreeForm>
    </LookupDeedsRequest>
   '

Lookup Homes By Owner#

Find other properties owned by an individual.

Endpoint#

/v4/WEB/LookupHomesByOwner

Click here to go to the full endpoint documentation.

Try it Now#

  • GET JSON
  • POST JSON
  • GET XML
  • POST XML
curl -X GET "https://property.melissadata.net/v4/WEB/LookupHomesByOwner?\
&t=Test\
&id={{customerId}}\
&mak=9005381555\
&ff=\
&format=JSON" \
-H "Content-Type: application/json" \
-H "Accept: application/json"
curl -X POST "https://property.melissadata.net/v4/WEB/LookupHomesByOwner" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{
      "TransmissionReference": "Test",
      "CustomerID": "{{customerId}}",
      "PropertyMAK": "9005381555",
      "FreeForm": ""
    }
   '
curl -X GET "https://property.melissadata.net/v4/WEB/LookupHomesByOwner?\
&t=Test\
&id={{customerId}}\
&mak=9005381555\
&ff=\
&format=XML" \
-H "Content-Type: application/xml" \
-H "Accept: application/xml"
curl -X POST "https://property.melissadata.net/v4/WEB/LookupHomesByOwner" \
-H "Content-Type: application/xml" \
-H "Accept: application/xml" \
-d '<LooupHomesByOwnerRequest>
      <TransmissionReference>Test</TransmissionReference>
      <CustomerID>{{customerId}}</CustomerID>
      <PropertyMAK>9005381555</PropertyMAK>
      <FreeForm/>
    </LookupHomesByOwnerRequest>
   '

Lookup Property#

Find additional information about a specific property.

Endpoint#

/v4/WEB/LookupProperty

Click here to go to the full endpoint documentation.

Try it Now#

  • GET JSON
  • POST JSON
  • GET XML
  • POST XML
curl -X GET "https://property.melissadata.net/v4/WEB/LookupProperty?\
&t=Test\
&id={{customerId}}\
&cols=\
&account=\
&addresskey=\
&a1=710%20Winston%20Ln\
&a2=\
&apn=\
&city=Sugar%20Land\
&country=\
&fips=\
&ff=\
&mak=\
&state=TX\
&postal=\
&format=JSON" \
-H "Content-Type: application/json" \
-H "Accept: application/json"
curl -X POST "https://property.melissadata.net/v4/WEB/LookupProperty" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{
      "TransmissionReference": "Test",
      "CustomerID": "{{customerId}}",
      "Columns": "",
      "Account": "",
      "AddressKey": "",
      "AddressLine1": "710 Winston Ln",
      "AddressLine2": "",
      "APN": "",
      "City": "Sugar Land",
      "Country": "",
      "FIPS": "",
      "FreeForm": "",
      "PropertyMAK": "",
      "State": "TX",
      "PostalCode": ""
    }
   '
curl -X GET "https://property.melissadata.net/v4/WEB/LookupProperty?\
&t=Test\
&id={{customerId}}\
&cols=\
&account=\
&addresskey=\
&a1=710%20Winston%20Ln\
&a2=\
&apn=\
&city=Sugar%20Land\
&country=\
&fips=\
&ff=\
&mak=\
&state=TX\
&postal=\
&format=XML" \
-H "Content-Type: application/xml" \
-H "Accept: application/xml"
curl -X POST "https://property.melissadata.net/v4/WEB/LookupProperty" \
-H "Content-Type: application/xml" \
-H "Accept: application/xml" \
-d '<LooupPropertyRequest>
      <TransmissionReference>Test</TransmissionReference>
      <CustomerID>{{customerId}}</CustomerID>
      <Columns/>
      <Account/>
      <AddressKey/>
      <AddressLine1>710 Winston Ln</AddressLine1>
      <AddressLine2/>
      <APN/>
      <City>Sugar Land</City>
      <Country/>
      <FIPS/>
      <FreeForm/>
      <PropertyMAK/>
      <State>TX</State>
      <PostalCode/>
    </LookupPropertyRequest>
   '

Sample Code#

Language

Repository

C# .NET

melissa_favicon MelissaData/Property-Dotnet

Java

melissa_favicon MelissaData/Property-Java

Python3

melissa_favicon MelissaData/Property-Python3

Postman Collection

melissa_favicon MelissaData/Property-Postman