...
Example URLs and Response
A simple case:
http://10.250.60.189/geocode/findAddressCandidates?f=json&Address=115 Main St&Zip=94105
You can leave out the zip code if you want
http://10.250.60.189/geocode/findAddressCandidates?f=json&Address=115 Main St
This one has lots of parcels...
http://10.250.60.189/geocode/findAddressCandidates?f=json&Address=2655 Hyde
This one has lots of parcels and lots of units...
http://10.250.60.189/geocode/findAddressCandidates?f=json&Address=1000 PineHere is a simple query for 115 Main St.
A query for "1200 18th" will result in 2 candidates.
Your query does not have to include the zip code.
A query for 2655 Hyde returns lots of parcels.
A query for 1000 Pine returns lots of units.
Example Client
Here is an example client written in python.
...