CoordiFind

A geocoding API for your needs.

Region information from coordinates

With this API you can search for region information in different languages by coordinates.

https://coordifind.com/api/geocoding/v1/region_name_from_coords

API Url parameters

lat(required)
The latitude of the region.
long(required)
The longitude of the region.
limit(optional)
Limits the amount of results.
Make request:
lat
long
limit

Python

import requests url = "https://coordifind.com/api/geocoding/v1/region_name_from_coords?lat=35&long=42.5" try: response = requests.get(url) response.raise_for_status() json_data = response.json() print(json_data) except requests.exceptions.RequestException as e: print(f"An error occurred: {e}")

Javascript

const url = "https://coordifind.com/api/geocoding/v1/region_name_from_coords?lat=35&long=42.5"; fetch(url) .then(response => { if (!response.ok) { throw new Error('HTTP error! Status: ${response.status}'); } return response.json(); }) .then(jsonData => { console.log(jsonData); }) .catch(error => { console.error('An error occurred: ${error.message}'); });
Support me on Ko-Fi

Disclaimer

This API is offered as-is and without any guarantees or warranties of any kind, whether express or implied. By using this API, you acknowledge and agree to the following:

  1. No Liability: I do not accept any liability for any direct, indirect, incidental, consequential, or special damages arising from the use of this API, including but not limited to errors, inaccuracies, or disruptions in service.
  2. No Warranty: This API is provided without any warranty of accuracy, reliability, availability, or suitability for any particular purpose. The data and services are offered on an "as-is" basis.
  3. Usage Responsibility: You are solely responsible for how you use the API, including but not limited to the interpretation and use of the data it provides. It is your responsibility to ensure that your use complies with applicable laws, regulations, and standards.
  4. Service Changes and Termination: I reserve the right to modify, suspend, or terminate this API service at any time without notice and without any obligation to continue offering the service or its features.
  5. Third-Party Dependencies: If this API relies on third-party services, I am not responsible for any interruptions, inaccuracies, or issues originating from those services.

By using this API, you confirm that you understand, accept, and agree to this disclaimer and the terms outlined in the Privacy Policy. If you do not agree, you must not use this API.