Elevation line fails with geometry.lat >45°

Hi,
When using elevation/line service, I got this message error :
"message" : "GeometryError: The requested geometry is outside the bounds of srtm"

curl -X POST \
  'https://api.openrouteservice.org/elevation/line' \
  -H 'Content-Type: application/json; charset=utf-8' \
  -H 'Accept: application/json, application/geo+json, application/gpx+xml, img/png; charset=utf-8' \
  -H 'Authorization: API-KEY' \
  -d '{"format_in":"polyline","format_out":"polyline","geometry":[[45.802665,2.236689],[45.802678,2.236731],[45.802557,2.237139],[45.802499,2.237285]]}}'

But I didn’t have any message error with this geometry by changing the lat to 44 °:
[[44.802665,2.236689],[44.802678,2.236731],[44.802557,2.237139],[44.802499,2.237285]]

It’s lon, lat;) You’re requesting from the North Pole, beyond 60 deg N or smth SRTM is not defined anymore (weird that you don’t get an error for changing the longitude!).

Thanks, it’s lon,lat :+1: !