Addresses
Get Address GeoJSON
Addresses
Get Address GeoJSON
Get Address GeoJSON
GET
/
addresses
/
{id}
/
geojson
curl --request GET \
--url https://api.geocoders.io/addresses/{id}/geojson \
--header 'X-Api-Key: <api-key>'
{
"type": "Feature",
"features": [
{
"type": "Feature",
"geometry": {
"type": "Point"
},
"properties": {}
}
]
}
Authorizations
Path Parameters
ID of Address to get
Response
200 - application/json
Get Address GeoJSON response
GeoJSON 'FeatureCollection' object
curl --request GET \
--url https://api.geocoders.io/addresses/{id}/geojson \
--header 'X-Api-Key: <api-key>'
{
"type": "Feature",
"features": [
{
"type": "Feature",
"geometry": {
"type": "Point"
},
"properties": {}
}
]
}