← Back to catalog
opentopodata.batch
mock data$0.002 / callOpen Topo Data — Batch Elevation Query
Get land surface elevation for up to 100 lat/lon coordinates in a single request. All points share the same dataset (srtm90m default, srtm30m, or aster30m). Returns an array of results, each with elevation_m, lat, lon, and dataset. Ideal for elevation profiling along a route, contour-line computation, or bulk terrain analysis. MIT licence, no auth, no upstream cost.
Input schema
dataset
stringElevation dataset applied to all locations: srtm90m (default), srtm30m, aster30m
locationsrequired
arrayArray of lat/lon objects to query (1–100 locations per request)
interpolation
stringInterpolation method: bilinear (default) or nearest
Call via REST
curl -X POST https://unifyapi.pro/api/call/opentopodata.batch \
-H "Authorization: Bearer uak_live_..." \
-H "Content-Type: application/json" \
-d '{"dataset":"<dataset>","locations":"<locations>","interpolation":"<interpolation>"}'