Returns a GeoJSON FeatureCollection for the protected area with the given area_id.
Security
BearerAuth
GET
curl -i -X GET \
'https://api.open-atlas.com/_mock/openapi/protected-areas/{area_id}' \
-H 'Authorization: Bearer <YOUR_JWT or vantage_live_ API key_HERE>'GeoJSON Feature for the protected area
One of:
Geometry object defining the spatial aspect of the feature. Supports Point, Polygon, or MultiPolygon GeoJSON geometries
Additional properties for the feature as key-value pairs. Optional properties include point_ha (float < 4.0)
Example:
{ "point_ha": 3.5 }
Response
- Point
- Polygon
- MultiPolygon
Protected Area Feature
{ "geometry": { "type": "MultiPolygon", "coordinates": [ … ] }, "properties": { "area_name": "Shenandoah Park", "iucn_category": "Unknown", "source": "USGS", "area_id": "311224" }, "type": "Feature" }