POST method it can allow to send a list of addresses (maximum 100 per request) and return the geocodes to each address.
For processing multiple addresses, it returns null for the address that encounters an exception.
{
"payload":[
{ "fullAddress": "CA22 4SE", "country": "GB" },
{ "fullAddress": "20 Bond Street, Walker Flat SA 5238", "country": "AU" },
{ "fullAddress": "N6B 3L5", "country": "CA" },
{ "fullAddress": "Knowsley Industrial Park, LIVERPOOL, L33 7UY", "country": "GB" },
{ "fullAddress": "08550", "country": "US" },
{ "fullAddress": "19 Meado", "country": "IE" }
]
}
{
"status": "SUCCESS",
"messages": [],
"payload": [
{
"_type": "AddressIntl",
"fullAddress": "22 Highlands Close, Finsbury Park, London, N4 4SE",
"country": "GB",
"postcode": null,
"street2": null,
"street": null,
"streetNumber": null,
"postal": null,
"postalType": null,
"postalNumber": null,
"buildingName": null,
"subdwelling": null,
"attributes": {
"Latitude": "51.57366",
"Longitude": "-0.12047"
},
"id": null,
"district": null,
"city": null,
"province": null
},
{
"_type": "AddressIntl",
"fullAddress": "20 Bond Street, Walker Flat, South Australia, 5238",
"country": "AU",
"postcode": null,
"street2": null,
"street": null,
"streetNumber": null,
"postal": null,
"postalType": null,
"postalNumber": null,
"buildingName": null,
"subdwelling": null,
"attributes": {
"Latitude": "-34.77875",
"Longitude": "139.55431"
},
"id": null,
"district": null,
"city": null,
"province": null
},
{
"_type": "AddressIntl",
"fullAddress": "Dundas Street, London ON N0M, N5V, N5W, N5X, N5Y, N5Z, N6A, N6B, N6C, N6E, N6G, N6H, N6J, N6K, N6M, N6P",
"country": "CA",
"postcode": null,
"street2": null,
"street": null,
"streetNumber": null,
"postal": null,
"postalType": null,
"postalNumber": null,
"buildingName": null,
"subdwelling": null,
"attributes": {
"Latitude": "43.00336",
"Longitude": "-81.18079"
},
"id": null,
"district": null,
"city": null,
"province": null
},
{
"_type": "AddressIntl",
"fullAddress": "North Mersey Business Centre,Woodward Road, Knowsley Industrial Park, Liverpool",
"country": "GB",
"postcode": null,
"street2": null,
"street": null,
"streetNumber": null,
"postal": null,
"postalType": null,
"postalNumber": null,
"buildingName": null,
"subdwelling": null,
"attributes": {
"Latitude": "53.4892",
"Longitude": "-2.8515"
},
"id": null,
"district": null,
"city": null,
"province": null
},
{
"_type": "AddressIntl",
"fullAddress": "Princeton Junction, NJ 08550",
"country": "US",
"postcode": null,
"street2": null,
"street": null,
"streetNumber": null,
"postal": null,
"postalType": null,
"postalNumber": null,
"buildingName": null,
"subdwelling": null,
"attributes": {
"Latitude": "40.29213",
"Longitude": "-74.61926"
},
"id": null,
"district": null,
"city": null,
"province": null
},
{
"_type": "AddressIntl",
"fullAddress": "",
"country": "IE",
"postcode": null,
"street2": null,
"street": null,
"streetNumber": null,
"postal": null,
"postalType": null,
"postalNumber": null,
"buildingName": null,
"subdwelling": null,
"attributes": {
"Latitude": "52.40025",
"Longitude": "-9.286"
},
"id": null,
"district": null,
"city": null,
"province": null
}
]
}