Returns all analysis runs associated with the provided plot_id. Each item summarizes the run, including the check type, effective configuration, status, timing, tokens cost, and links to artifacts. A plot accumulates one run per check per job, so re-running an analysis with a different configuration produces a new, auditable run.
curl -i -X GET \
'https://api.open-atlas.com/_mock/openapi/analysis-runs?plot_id=string' \
-H 'Authorization: Bearer <YOUR_JWT or vantage_live_ API key_HERE>'Successful response
The analysis capability that was run, e.g. 'eudr', 'protected_area', 'soil_moisture', 'visual_verification'
The exact configuration used for this run, after merging plot metadata, job-level config, and per-plot overrides
{ "harvest_date": "2024-11-01", "commodity": "cocoa" }
Complete analysis data for a plot. Legacy top-level fields (risk_level, deforestation, forest_*, etc.) are written by the EUDR bundle for backwards compatibility; the same data is also available under the eudr key. Every other analysis capability writes its result under a key matching the capability name (e.g. soil_moisture, flood_risk_5years, solar_site_suitability) using the standard capability result envelope, except where a dedicated schema is documented (visual_verification, deforestation_analysis, GEE checks). The protected_area check writes under protected_areas and the indigenous_land check under indigenous_land.
[ { "run_id": "string", "job_id": "string", "plot_id": "string", "check_type": "eudr", "effective_config": { … }, "status": "string", "error": "string", "analysis_image": "string", "tokens_cost": 0, "created_at": "string", "updated_at": "string", "analysis": { … } } ]