cURL
curl --request GET \ --url https://api.addressy.com/Geocoding/International/PositionToCountry/v1.00/json6.ws
200
Success
{ "Items": [ { "CountryName": "", "CountryIso2": "", "CountryIso3": "", "CountryIsoNumber": "" } ]}
Identify which country contains specific coordinates. Returns country name and ISO codes from WGS84 latitude and longitude input.
The key to use to authenticate to the service.
The latitude of the position to search against.
The longitude of the position to search against.
Show child attributes
The full name of the country the address is in, as per the ISO 3166-1 standard.
The two character ISO code for the country in the address. For example, the CountryIso2 for the United Kingdom is "GB".
The three character ISO code for the country in the address. For example, the CountryIso3 for the United Kingdom is "GBR".
The ISO numeric code for the country in the address. For example, the CountryIsoNumber for the United Kingdom is "826".
Was this page helpful?