Skip to main content
POST
/
LocationServices
/
Geocoding
/
Global
/
v1.10
/
json6.ws
cURL
curl --request POST \
  --url https://api.addressy.com/LocationServices/Geocoding/Global/v1.10/json6.ws \
  --header 'Content-Type: application/json' \
  --data '{
  "Key": "<string>",
  "Input": [
    "<string>"
  ],
  "Country": "<string>"
}'
[
{
"Input": "<string>",
"Results": [
{
"Premise": "<string>",
"Thoroughfare": "<string>",
"Locality": "<string>",
"AdministrativeArea": "<string>",
"PostalCode": "<string>",
"Country": "<string>",
"Latitude": "<string>",
"Longitude": "<string>",
"GeoDistance": "<string>",
"GeoAccuracy": "<string>",
"LocationType": "<string>"
}
]
}
]
When reverse geocoding, multiple addresses will be returned if possible (with a maximum of 5). This is because, particularly in urban areas, it can be difficult to identify the specific property associated with a set of co-ordinates. The Global Geocoding API supports most international locations. For a full list of coverage please see https://support.loqate.com/coverage-full/. This method will consume credit. You will be charged per address geocoded.

Use of geocodes/addresses

Use of the output of the Global Geocoding API is temporary, and only for use as part of a Store Finder. It is not permitted to index or store results for other purposes, such as use in a checkout process. For further information please see the Loqate Terms and Conditions.

Body

application/json
Key
string
default:AA11-AA11-AA11-AA11
required

The key used to authenticate with the service. For example: 'AA11-AA11-AA11-AA11'

Input
string[] | null

An array of strings containing either location co-ordinates and/or unstructured addresses. This array can contain up to 10 items.

Country
string | null

The ISO2 or ISO3 country code (e.g. GB or GBR). This will limit the geocoding lookup to the specified country, but will improve performance. This parameter is not required for reverse geocoding requests.

Response

Success

Input
string | null

The input from the original request.

Results
object[] | null

An array of strings containing the input from the original request.

I