GeoLocation

GeoLocation API returns all the available longitude and latitude based on the city, state, and country passed in the API input request.

GeoLocation API uses the Resume Parser / JD Parser parsed JSON data or the location array to extract the location list and returns all the latitudes and longitudes of the extracted locations in the JSON response.

For a city, there can be multiple areas available with longitude and latitude, GeoLocation API returns all the combinations of longitude and latitude available in the city along with the city, state, and country details, see below example, for City Inverness, there is 3 area found with its longitude and latitude details. For more information, see GeoLocation Endpoint, Method and Parameter.
{
  "SearchLocation": {
    "City": "Inverness",
    "State": "",
    "Country": ""
  },
  "Found": [
    {
      "City": "Inverness",
      "State": "New South Wales",
      "Country": "AU",
      "Longitude": "148.50000000",
      "Latitude": "-29.96667000"
    },
    {
      "City": "Inverness",
      "State": "New South Wales",
      "Country": "AU",
      "Longitude": "147.06483000",
      "Latitude": "-35.08906000"
    },
    {
      "City": "Inverness",
      "State": "Queensland",
      "Country": "AU",
      "Longitude": "150.72306000",
      "Latitude": "-23.11582000"
    }
  ]
}