const response = await fetch('/geo-information/v1/elevations', {
method: 'POST',
headers: {
"x-api-key": "APIKeyHeader <apiKey>",
"Content-Type": "application/json"
},
body: JSON.stringify([
{
"lat": 50.123,
"lon": 10.456
}
]),
});
const data = await response.json();