Use this endpoint to retrieve lists of addresses.
- Get a paginated result view of consumers
Data Retriever
The Data Retriever Cloud API allows you to generate, download, and access lists of contacts, addresses, businesses, and more.
Data Retriever offers the following capabilities:
- Retrieve a count of results based on provided filters, including City/State, Radius, Zip code, and polygon Shape.
- Purchase a complete result set, navigate through the list of contacts and addresses using pagination.
Documentation
Useful Resources
Product Page
Support Center
The License Key issued by Melissa.
Any parameter you would like to include in the query.
Requires at least one from:
- Zips
- Cities
- Radius
- ShapeWKTs
A list of Zips objects containing Zip codes and optionally Plus4.
A Radius object containing a Latitude, Longitude, and Distance represented in miles.
- Data Retriever Serverhttps://dataretriever.melissadata.net/web/V1/Consumer/doCount
- curl
- C#
- Python
- Java
- JavaScript
- Node.js
- PHP
- Go
- Ruby
- R
- C#+Newtonsoft
- Java8+Apache
- Payload
curl -i -X POST \
https://dataretriever.melissadata.net/web/V1/Consumer/doCount \
-H 'Content-Type: application/json' \
-d '{
"CustomerID": "{REPLACE-WITH-YOUR-LICENSE-KEY}",
"Includes": {
"Zips": [
{
"Zip": "92688",
"CarrierRoute": "C057"
}
]
},
"Excludes": {
"AddressStreetName": [
{
"ZipCode": "92688",
"Street": "Arado"
}
]
}
}'{ "Count": 606, "JobId": "returned_job_id", "ResultCode": "LS01" }
The License Key issued by Melissa.
Any parameter you would like to include in the query.
Requires at least one from:
- Zips
- Cities
- Radius
- ShapeWKTs
A list of Zips objects containing Zip codes and optionally Plus4.
A Radius object containing a Latitude, Longitude, and Distance represented in miles.
All Consumer Columns you want returned.
- Data Retriever Serverhttps://dataretriever.melissadata.net/web/V1/Consumer/doLookup
- curl
- C#
- Python
- Java
- JavaScript
- Node.js
- PHP
- Go
- Ruby
- R
- C#+Newtonsoft
- Java8+Apache
- Payload
curl -i -X POST \
https://dataretriever.melissadata.net/web/V1/Consumer/doLookup \
-H 'Content-Type: application/json' \
-d '{
"CustomerID": "{REPLACE-WITH-YOUR-LICENSE-KEY}",
"Includes": {
"Zips": [
{
"Zip": "92688",
"CarrierRoute": "C057"
}
]
},
"Excludes": {
"AddressStreetName": [
{
"ZipCode": "92688",
"Street": "Arado"
}
]
},
"Columns": [
"MelissaAddressKey",
"AddressLine",
"RBDI"
],
"Pagination": {
"Page": 1
}
}'{ "Count": 606, "Results": [ { … }, { … } ], "Pagination": { "CurrentPage": 1, "NextPage": 2, "TotalPages": 6 }, "JobId": "returned_job_id", "ResultCode": "LS01" }
The License Key issued by Melissa.
Any parameter you would like to include in the query.
Requires at least one from:
- Zips
- Cities
- Radius
- ShapeWKTs
A list of Zips objects containing Zip codes and optionally Plus4.
A Radius object containing a Latitude, Longitude, and Distance represented in miles.
All Consumer Columns you want returned.
- Data Retriever Serverhttps://dataretriever.melissadata.net/web/V1/Consumer/getCount
- curl
- C#
- Python
- Java
- JavaScript
- Node.js
- PHP
- Go
- Ruby
- R
- C#+Newtonsoft
- Java8+Apache
- Payload
curl -i -X POST \
https://dataretriever.melissadata.net/web/V1/Consumer/getCount \
-H 'Content-Type: application/json' \
-d '{
"CustomerID": "{REPLACE-WITH-YOUR-LICENSE-KEY}",
"Includes": {
"Zips": [
{
"Zip": "92688",
"CarrierRoute": "C057"
}
]
},
"Excludes": {
"AddressStreetName": [
{
"ZipCode": "92688",
"Street": "Arado"
}
]
},
"Columns": [
"MelissaAddressKey",
"AddressLine",
"RBDI"
]
}'{ "JobId": "returned_job_id", "Count": 606, "ResultCode": "LS01", "Sample": [ { … }, { … } ] }