CoordiFind

A geocoding API for your needs.

Coordinates from river name

This API lets you search river names in different languages and get information including coordinates.

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

API Url parameters

q(required)
Your search query. You can use multiple search terms separated by a plus (+).
limit(optional)
Limits the amount of results.
attributes(optional)
By default, the server will search in all Name-attributes. You can specify other attributes (separated using +) to search in. (See attribute list in the sample result, excluding latitude/longitude -> use one of our other API endpoints).
Make request:
q
limit
attributes

Python

import requests url = "https://coordifind.com/api/geocoding/v1/coords_from_river_name?q=Thames" 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/coords_from_river_name?q=Thames"; 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.