Skip to main content
GET
Elevation
Look up terrain elevation (Copernicus 90m DEM, 2021) for a coordinate. Pass comma-separated latitude and longitude lists — positionally aligned — to resolve up to 100 points in a single request. The response is a single object with an elevation array holding one value (meters) per requested coordinate, in request order. Example: GET /apis/v1/openmeteo/elevation?latitude=52.52,48.85&longitude=13.41,2.35 returns { "elevation": [38.0, 35.0] }. Billing: $0.00015 per call (150 micros USD), metered per request. All Open-Meteo endpoints are GET pass-through — authenticate with your AIsa API key as a bearer token (the same key used across every AIsa /apis/* endpoint); AIsa handles provider access.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

latitude
string
required

WGS84 latitude, or a comma-separated list of up to 100 latitudes.

Example:

"52.52,48.85"

longitude
string
required

WGS84 longitude, or a comma-separated list of up to 100 longitudes (positions aligned with latitude).

Example:

"13.41,2.35"

Response

200 - application/json

Elevation in meters for each requested coordinate.

The response is of type object.