Open Topo Data
Elevation and ocean depth for a lat/lon
Query the elevation (or ocean depth) at one or more coordinates against a choice of open elevation datasets. The public instance is keyless; the test-dataset shown here returns a demo value while named datasets serve real terrain data.
GET https://api.opentopodata.org/v1/test-dataset?locations=56.35,123.90
{
"results": [
{
"dataset": "test-dataset",
"elevation": 1014.15,
"location": {
"lat": 56.35,
"lng": 123.9
}
}
],
"status": "OK"
}curl "https://api.opentopodata.org/v1/test-dataset?locations=56.35,123.90"const res = await fetch("https://api.opentopodata.org/v1/test-dataset?locations=56.35,123.90");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://api.opentopodata.org/v1/test-dataset?locations=56.35,123.90")
print(res.json())BROWSER CALLS BLOCKED (NO CORS/HTTPS) — USE THE CURL SNIPPET
/v1/test-dataset?locations=56.35,123.90PROBEDElevation and ocean depth for a lat/lon
/v1V1 — documented GET route.
/v1/1V1 details by ID (example: 1).
/v1?limit=10V1 — documented GET route.
/v1/search?q=testSearch by query parameters.
/v1/V1 — documented GET route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
Open Topo Data: common questions
Is Open Topo Data free to use?
Yes — Open Topo Data is a free geo & maps API. Free tier: Free — limits not published. Whether the free tier allows commercial use is unclear — check the provider docs.
Does Open Topo Data need an API key?
No — Open Topo Data needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call Open Topo Data from the browser?
Not directly — Open Topo Data doesn't send browser-friendly CORS headers, so call it from a server or proxy instead. Copy the curl or Python snippet on this page to get started.
Is Open Topo Data up right now?
As of our last scheduled check, Open Topo Data is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.