Use Geo REST when:
Geo Batch allows you to upload a CSV containing your address or latitude/longitude geocoding requests. The results can then be downloaded and exported to your database. When to use Geo Batch:
The geocodeRequests
object contains a list of street addresses and/or latitude/longitude coordinate pairs to geocode within the GeocodeRequest
object.
The geocodeRequest
object contains the input data to geocode:
Only address information or latitude/longitude coordinates can be provided in the request, but not both.
Key | Value |
---|---|
ref | [string] Reference ID Optional Reference ID for the geocode request |
cass | [bool] CASS Validated Address Indicates if the CASS validated address is desired in the results
|
lat | [double] Latitude Latitude for geocoding based on lat/long coordinates |
long | [double] Longitude Longitude for geocoding based on lat/long coordinates |
addr | [string] Street address |
city | [string] City name |
st | [string] State name or abbreviation |
zip | [string] Postal Code |
[ { "ref": "Address Request", "cass": true, "addr": "255 S. King St.", "city": "Seattle", "st": "WA", "zip": "98104" }, { "ref": "Lat/Long Request", "lat": 35.991130741436415, "long": -78.90267307450108 }]