GET
/
provinces
/
{id}
/
municipalities
/
geojson
curl --request GET \
  --url https://api.geocoders.io/provinces/{id}/municipalities/geojson \
  --header 'X-Api-Key: <api-key>'
{
  "type": "Feature",
  "features": [
    {
      "type": "Feature",
      "geometry": {
        "type": "Point"
      },
      "properties": {}
    }
  ]
}

Authorizations

X-Api-Key
string
header
required

Path Parameters

id
string
required

ID of Province Municipalities to list

Query Parameters

name
string

name to filter by

Response

200 - application/json
List Province Municipalities response

GeoJSON 'FeatureCollection' object

type
enum<string>
required
Available options:
Feature,
FeatureCollection,
Point,
MultiPoint,
LineString,
MultiLineString,
Polygon,
MultiPolygon,
GeometryCollection
features
object[]
required

GeoJSON 'Feature' object