v1

latestOpenAPI 3.0.32026-07-1312516.9 KB
Geocoding

Forward geocoding

Convert an address or place name to GeoJSON coordinates.

get/api

Query parameters

api_keystring

API key alternative to the X-Api-Key header.

qstring required

Address or place name to geocode.

limitinteger
langstring
latnumber double

Bias results near this latitude.

lonnumber double

Bias results near this longitude.

Response

GeoJSON feature collection.

type'FeatureCollection' required

Example response

{
  "features": [
    {
      "geometry": {
        "type": "Point"
      }
    }
  ]
}
All 12 operations