REMOTE SENSING
Listing Images
Requirements:
The image listing endpoint is the most basic operation you can do with the API. It will list all images available for a given AOI and date range.
Pro Tip: If your AOI is a field, each image will have a metadata attribute that contains the precomputed image statistics for that field. You can use the mean ndvi statistics, for example, as a time series for the given date range.
Obtaining NDVI statistics
The image listing endpoint is the most basic operation you can do with the API. It will list all images available for a given AOI and date range.
For field images, each image will have a metadata attribute that contains the precomputed image statistics for that field. You can use the mean NDVI statistics, for example, as a time series for the given date range.
Here is an example of response payload when Listing images for a field AOI:
{
"content": [
{
"id": "CWOVF_s2b_20250503_5060993_...", ← This is the unique identifier for the image
"acquired_at": "2025-05-03 14:16:29.574000Z",
"aoi": {
"org_id": "...",
"property_id": "...",
"type": "field",
"uid": "...",
},
"image_cloud_coverage": 0.015,
"last_processed_at": "2025-05-03 19:34:47.315000Z",
"scenes": ["CWOP_s2b_20250503_s_..."],
"scene_cloud_coverage": 0.015,
"sub_products": [
"ndvi",
"rgb",
"raw",
"custom"
],
"source": "sentinel",
"composed_of": {},
"extra_attributes": {
"image_metadata": {
"scene": {
"cloud_coverage_lib_version": "cwo_1_0",
"image_cloud_coverage": 0.015,
"scene_product_id": "S2B_MSIL1C_20250503T140709_N0511_R110_T21LVE_20250503T172233"
},
"stats": {
"ndvi": {
"mean": 0.806, ← This is the mean NDVI value for this field image on 2025-05-03
"min": 0.296,
"max": 0.836,
"std": 0.072,
"data_coverage": 1
}
}
}
},
"geojson": null,
"histogram_stats": null,
"scene_bounds": null
},
...