POST /api/v1/enterprise/eudr/risk/assess-coordinate
Request Body
The geographic latitude of the point to assess, expressed as a decimal degree (
double). Valid range is -90.0 to 90.0. Positive values are north of the equator; negative values are south.Example: -1.2921The geographic longitude of the point to assess, expressed as a decimal degree (
double). Valid range is -180.0 to 180.0. Positive values are east of the Prime Meridian; negative values are west.Example: 36.8219Code Examples
Response
A200 OK response includes the echoed coordinates alongside the full satellite and country risk analysis. All required fields are guaranteed present; optional fields such as countryCode and countryName may be null for coordinates in unmapped regions.
The latitude value submitted in the request, echoed back for confirmation.
The longitude value submitted in the request, echoed back for confirmation.
ISO-3166-1 alpha-3 country code reverse-geocoded from the submitted coordinate (e.g.,
KEN, BRA, IDN). Returns null if the point falls in international waters or an unmapped territory.Human-readable name of the detected country. Returns
null under the same conditions as countryCode.The EUDR Country Risk Matrix classification for the detected country. One of
LOW, STANDARD, or HIGH. A HIGH classification means you will need to supply additional due-diligence evidence before submitting a Due Diligence Statement.A plain-language explanation for the assigned risk level derived from the Country Risk Matrix dataset.
The completion state of the Sentinel-2 satellite analysis. Possible values:
COMPLETED— analysis finished successfullyPHASE_2_SAR_FAILOVER_PENDING— optical imagery was insufficient; SAR fallback queuedUNSUPPORTED_OR_EMPTY_ACQUISITION— no satellite data available for this coordinate
true if the live analysis triggered a deforestation alert for the assessed point; false otherwise.A decimal value between
0.0 and 1.0 representing the NDVI-derived probability of deforestation activity at this coordinate. Values above 0.30 indicate elevated risk.The historical baseline NDVI index for the point, used as the reference for change detection.
The most recent NDVI index reading from the latest available Sentinel-2 acquisition.
The delta between
ndviCurrent and ndviBaseline. Negative values indicate vegetation loss. Values below -0.10 should be investigated further.The satellite programme that provided the imagery for this analysis. Typically
COPERNICUS-SENTINEL-2; SAR fallback analyses will report SENTINEL_1_SAR.Error Responses
| HTTP Status | Error Code | Description |
|---|---|---|
400 Bad Request | VALIDATION_FAILED | One or both coordinate values are missing, non-numeric, or out of the valid range (latitude must be −90 to 90; longitude must be −180 to 180). |
401 Unauthorized | UNAUTHORIZED | The Authorization header is absent or the bearer token is not recognised. |
403 Forbidden | FORBIDDEN | Your API key lacks the required scope to call risk assessment endpoints. |
429 Too Many Requests | RATE_LIMITED | You have exceeded the hourly rate limit. Inspect X-RateLimit-Reset to determine when your window resets. |