Last updated 3 months ago
Was this helpful?
This service will provide quasi-static information on elevations around the globe from COPERNICUS COP DEM GLO-30.
Request Elevation for Single Point
Request Elevation for List of Points
/geo-information/v1/elevation
Latitude in decimal degrees
Longitude in decimal degrees
Successful Response
Validation Error
curl -L \ --url '/geo-information/v1/elevation?lat=1&lon=1' \ --header 'x-api-key: YOUR_API_KEY'
{ "elevation": 123.789, "latitude": 50.123, "longitude": 10.456, "model": "cop-dem-glo-30" }
/geo-information/v1/elevations
curl -L \ --request POST \ --url '/geo-information/v1/elevations' \ --header 'x-api-key: YOUR_API_KEY' \ --header 'Content-Type: application/json' \ --data '[{"lat":50.123,"lon":10.456}]'
[ { "elevation": 123.789, "latitude": 50.123, "longitude": 10.456, "model": "cop-dem-glo-30" } ]