# Fetch protected area details Returns a GeoJSON FeatureCollection for the protected area with the given area_id. Endpoint: GET /protected-areas/{area_id} Version: 3.0.1 ## Header parameters: - `Authorization` (string) Authorization header with a Bearer token, formatted as 'Bearer [JWT]' where [JWT] is the JSON Web Token used for user authentication and authorization. Example: "Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.your-payload-here.signature" ## Path parameters: - `area_id` (integer, required) ## Response 200 fields (application/json): - `geometry` (any, required) Geometry object defining the spatial aspect of the feature, can be either Point or Polygon - `properties` (object) Additional properties for the feature as key-value pairs. Optional properties include point_ha (float < 4.0) Example: {"point_ha":3.5} - `type` (string, required) Type of the GeoJSON feature Example: "Feature"