# Get risk information Returns computed risk factors for a given geographic area, including deforestation history, remaining forest coverage, and overlap with protected/indigenous territories. The area must be within monitoring regions and meet size constraints. Endpoint: POST /get-risk-info Version: v1 Security: bearerAuth ## Request fields (application/json): - `geometry` (object, required) GeoJSON polygon with following constraints: - Not self-intersecting - Within monitoring region - Maximum 40 coordinates - Area between 0.1 and 100,000 ha - `projectId` (string) Project ID (optional, defaults to user's 'active project') ## Response 200 fields (application/json): - `riskInfo` (object) - `riskInfo.totalSizeHa` (number) Total area in hectares Example: 10.4 - `riskInfo.yearToMonthToDeforestationHa` (object) Monthly deforestation data since January 2016 - `riskInfo.remainingForestHa` (number) Remaining forest area in hectares Example: 5.4 - `riskInfo.protectedAreasHa` (number) Protected area overlap in hectares Example: 1.2 - `riskInfo.indigenousTerritoriesHa` (number) Indigenous territory overlap in hectares Example: 6.7 ## Response 400 fields (application/json): - `errorCode` (string) Enum: "invalid_geometry", "outside_monitoring_region" - `errorMessage` (string)