Quickstart#

Introduction#

Welcome to the Melissa SmartMover Cloud Service. Contact data will deteriorate over time as people and businesses move around. SmartMover will allow you to keep that data up to date, both maintaining and confirming accuracy. The SmartMover Cloud Service is able to validate and standardize addresses, detect moves, and provide an updated address for an individual or business. SmartMover is available for both the US and Canada using data from the USPS and Canada Post respectively

You can use SmartMover to:

  • Keep contact addresses from the US and Canada up to date.

  • Standardize and validate addresses.

System Requirements#

  • SSL/TLS 1.2+

Getting Started#

What Can I Do?#

Check an address#

Smart Mover can validate and standardize addresses, detect moves, and provide an updated address for an individual or business.

Endpoint#

/V3/SOAP/SmartMover

Click here to go to the full endpoint documentation.

Try It Now#
  • GET JSON
  • POST JSON
  • GET XML
  • POST XML
curl -X GET "https://smartmover.melissadata.net/V3/WEB/SmartMover/doSmartMover\
?id={{customerId}}\
&pafid={{pafId}}\
&comp=Melissa\
&full=Ray%20Melissa\
&a1=22382%20Avenida%20Empresa\
&city=Rancho%20Santa%20Margarita\
&state=CA\
&postal=92688\
&ctry=US" \
-H "Content-Type: application/json" \
-H "Accept: application/json"
curl -X POST "https://smartmover.melissadata.net/V3/WEB/SmartMover/doSmartMover" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{
        "TransmissionReference": "",
        "CustomerID": "{{customerId}}",
        "JobID": "",
        "PAFId": "{{pafId{{",
        "ExecutionID": "Batch_1",
        "Actions": "NCOA",
        "Columns": "",
        "Options": "",
        "OptSmartMoverListName": "",
        "Format": "json",
          "Records": [
              {
                  "RecordID": "1",
                  "Company": "Melissa",
                  "NameFull": "Ray Melissa",
                  "NameFirst": "",
                  "NameMiddle": "",
                  "NamePrefix": "",
                  "NameSuffix": "",
                  "NameLast": "",
                  "Urbanization": "",
                  "AddressLine1": "22382 Avenida Empresa",
                  "AddressLine2": "",
                  "Suite": "",
                  "PrivateMailbox": "",
                  "City": "Rancho Santa Margarita",
                  "State": "CA",
                  "PostalCode": "92688",
                  "Plus4": "",
                  "Country": "US"
              }
          ]
    }'
curl -X GET "https://smartmover.melissadata.net/V3/WEB/SmartMover/doSmartMover\
?id={{customerId}}\
&pafid={{pafId}}\
&comp=Melissa\
&full=Ray%20Melissa\
&a1=22382%20Avenida%20Empresa\
&city=Rancho%20Santa%20Margarita\
&state=CA\
&postal=92688\
&ctry=US" \
-H "Content-Type: application/xml" \
-H "Accept: application/xml"
curl -X POST "https://smartmover.melissadata.net/V3/WEB/SmartMover/doSmartMover" \
-H "Content-Type: application/xml" \
-H "Accept: application/xml" \
-d '<Request>
        <CustomerID>{{customerId}}</CustomerID>
        <PAFId>{{pafId}}</PAFId>
        <TransmissionReference></TransmissionReference>
        <JobID></JobID>
        <Actions></Actions>
        <Columns></Columns>
        <OptSmartMoverListName></OptSmartMoverListName>
        <Options></Options>
        <Records>
            <RequestRecord>
                <RecordID></RecordID>
                <AddressLine1>22382 Avenida Empresa</AddressLine1>
                <AddressLine2></AddressLine2>
                <City>Rancho Santa Margarita</City>
                <State>CA</State>
                <PostalCode>92688</PostalCode>
                <Plus4></Plus4>
                <Suite></Suite>
                <Country></Country>
                <Company></Company>
                <NameFirst></NameFirst>
                <NameFull></NameFull>
                <NameLast></NameLast>
                <NameMiddle></NameMiddle>
                <NamePrefix></NamePrefix>
                <NameSuffix></NameSuffix>
                <PrivateMailbox></PrivateMailbox>
                <Urbanization></Urbanization>
            </RequestRecord>
        </Records>
    </Request>'

Sample Code#

Language

Repository

C# .NET

melissa_favicon MelissaData/SmartMover-Dotnet

Python3

melissa_favicon MelissaData/SmartMover-Python3

Postman Collection

melissa_favicon MelissaData/SmartMover-Postman