7 个端点,使用 SRTM90m 卫星数据进行海拔查询(全球任意坐标,单点或批量)、可用海拔数据集,以及包含品牌、型号、VIN 解码和车辆类型查询的 NHTSA 车辆数据库。适用于徒步/骑行应用、地形分析、汽车工具和车队管理。
基础 URL: https://nordapi.ee/api/v1
GET /elevation/lookup
使用 SRTM 90m 卫星数据获取地球上任意坐标的海拔(海拔米)。分辨率约为 90 米。
lat
必填
lng
必填
curl "https://nordapi.ee/api/v1/elevation/lookup?lat=59.9139&lng=10.7522"
GET /elevation/batch
在单次请求中获取多个点的海拔数据(最多 100 个位置)。点以竖线分隔的纬度,经度对表示。
locations
必填
curl "https://nordapi.ee/api/v1/elevation/batch?locations=59.91,10.75|60.39,5.32|63.43,10.40"
GET /elevation/datasets
List available elevation datasets with their coverage areas and resolutions.
curl https://nordapi.ee/api/v1/elevation/datasets
GET /vehicles/makes
Get a complete list of all vehicle manufacturers from the NHTSA database.
curl https://nordapi.ee/api/v1/vehicles/makes
GET /vehicles/models/:make
Get all models for a given vehicle manufacturer.
curl https://nordapi.ee/api/v1/vehicles/models/Honda
GET /vehicles/vin/:vin
解码车辆识别号 (VIN) 以获取详细的车辆规格:品牌、型号、年份、发动机、变速器、车身类型等。
curl https://nordapi.ee/api/v1/vehicles/vin/1HGBH41JXMN109186
GET /vehicles/types/:make
获取给定制造商生产的所有车辆类型(轿车、卡车、摩托车等)。
curl https://nordapi.ee/api/v1/vehicles/types/Mercedes