# Get jurisdiction by ID Retrieves detailed information about a specific jurisdiction by its ID. Returns jurisdiction metadata, boundaries, and risk assessment data for the specified framework. Endpoint: GET /v1/jurisdictions/{id} Version: v1 Security: bearerAuth ## Path parameters: - `id` (string, required) The Satelligence jurisdiction ID ## Query parameters: - `framework` (string, required) The regulatory framework cutoff date to use for risk assessment Enum: "NPDE", "CFI", "RSPO", "EUDR", "Fairtrade" ## Response 200 fields (application/json): - `id` (string) Internal Satelligence identifier for the jurisdiction - `name` (string) Display name of the jurisdiction Example: "Acre" - `administrationLevel` (integer) GADM administration level (0=country, 1=state/province, 2=district, etc.) Example: 1 - `administrationUnitName` (string) Name of the administration unit type at this level Example: "State" - `gadmId` (string) GADM identifier for this jurisdiction Example: "BRA.1_1" - `areaHa` (number) Total area of the jurisdiction in hectares Example: 16493200 - `country` (string) ISO 3166-1 alpha-2 country code Example: "BR" - `boundingBox` (object) - `boundingBox.minLng` (number) Minimum longitude - `boundingBox.minLat` (number) Minimum latitude - `boundingBox.maxLng` (number) Maximum longitude - `boundingBox.maxLat` (number) Maximum latitude - `assessment` (object) - `assessment.assessmentDate` (string) Date of the assessment (YYYY-MM-DD) Example: "2024-01-15" - `assessment.framework` (string) Supported cutoff dates Enum: "NPDE", "CFI", "RSPO", "EUDR", "Fairtrade" - `assessment.riskLevel` (string) Deforestation risk level for a jurisdiction Enum: "none", "low", "medium", "high" - `assessment.deforestation` (object) - `assessment.deforestation.areaHa` (number) Total deforestation area in hectares since the cutoff date - `assessment.deforestation.hasDeforestation` (boolean) Whether any deforestation was detected since the cutoff date - `assessment.commodities` (object) Commodity-specific land cover and deforestation data - `assessment.commodities.cocoa` (object) - `assessment.commodities.cocoa.areaHa` (number) Area of this commodity in hectares - `assessment.commodities.cocoa.deforestationHa` (number) Deforestation within this commodity area in hectares since the cutoff date - `assessment.commodities.coffee` (object) - `assessment.commodities.oilPalm` (object) - `assessment.commodities.soy` (object) - `assessment.commodities.rubber` (object) - `assessment.commodities.sugarCane` (object) - `assessment.riskFactors` (object) Risk factor presence and area data - `assessment.riskFactors.protectedAreas` (object) - `assessment.riskFactors.protectedAreas.areaHa` (number) Area in hectares - `assessment.riskFactors.protectedAreas.hasPresence` (boolean) Whether this risk factor is present in the jurisdiction - `assessment.riskFactors.indigenousTerritories` (object) - `assessment.riskFactors.remainingForest` (object) - `assessment.monthToLandCoverToDeforestationHa` (object) Monthly deforestation breakdown by commodity since the cutoff date. Keys are month strings (YYYY-MM). ## Response 400 fields ## Response 401 fields ## Response 404 fields