Use this endpoint to lookup addresses closest to the input coordinates.
Reverse GeoCoder
The Reverse GeoCoder Cloud API provides the closest valid address(s), based on an input latitude and longitude. You can set the distance from the input coordinates (to reduce the number of returned output addresses) and a maximum number of records to be returned by the service.
Reverse GeoCoder can be used to:
- Create a mailing list within a specific radius for targeted marketing.
- Use in mobile apps for emergency location purposes & provide roadside help.
- Identify the closest valid address(es) based on an input latitude and longitude
- Provide the closest Postal Code(s), Carrier Route(s) or Plus4(s) based on an input latitude and longitude.
- Create a dealer locator: Provide the closest valid address, Melissa Address Key (MAK) and distance from a provided list of MAKs based on an input latitude and longitude or MAK.
Documentation
Useful Resources
Product Page
Support Center
The License Key issued by Melissa.
Options - Specify which options to use for the selected action. List of options in <OptionName>:<Parameter> format. Multiple options are delimited with a ,.
For example: OptionName:Parameter,OptionName:Parameter.
IncludeApartments:< On | Off >- This options allows you to include records with a non-null baseMAK. Default ofOffwill not include non-null baseMAK records.IncludeEmptyLots:< On | Off >- This options allows you to specify if you want to include addresses that are empty lots in your search. Default ofOffwill not include empty lots.IncludeUndeliverable:< On | Off >- This options allows you to specify if you want to include addresses we have identified as unable to deliver mail to. Default ofOnwill include undeliverable addresses.
The Melissa Address Key (MAK) for a possible target address. You send in possible target addresses to lookup against the the origin address. You can send in more possible target addresses than your set MaxRecords.
- Reverse GeoCoder Serverhttps://reversegeo.melissadata.net/v3/web/ReverseGeoCode/doLookupFromList
- curl
- C#
- Python
- Java
- JavaScript
- Node.js
- PHP
- Go
- Ruby
- R
- C#+Newtonsoft
- Java8+Apache
- Payload
curl -i -X POST \
https://reversegeo.melissadata.net/v3/web/ReverseGeoCode/doLookupFromList \
-H 'Content-Type: application/json' \
-d '{
"CustomerId": "{REPLACE-WITH-YOUR-LICENSE-KEY}",
"Latitude": "33.63756710910554",
"Longitude": "-117.60695049134513",
"MaxDistance": "10",
"MaxRecords": "",
"Options": "",
"Records": [
{
"MelissaAddressKey": "8008006245",
"RecordID": "1"
},
{
"MelissaAddressKey": "5328287925",
"RecordID": "2"
}
],
"TransmissionReference": "Reverse Geo LookupFromList Test"
}'Successful response
Lists error codes from any errors caused by the most recent request as a whole. For more information, see Reverse GeoCoder Result Codes.
Comma delimited status, error codes, and change codes for the record. For more information, see Reverse GeoCoder Result Codes.
{ "Version": "6.2.0.5179", "TransmissionReference": "Test", "TransmissionResults": "", "Results": "GS07", "TotalRecords": 1, "Records": [ { … } ] }