# Get plant health and vigor series for local range Returns plant KPIs (e.g., vigor, incidence, severity) aggregated for a project in a local-time range. Auth via API token in x-api-key. Endpoint: GET /api/iot/plant Version: 2.0.0 Security: apiKeyAuth ## Query parameters: - `projectId` (string, required) - `from` (string, required) - `to` (string, required) - `timezone` (string, required) ## Response 200 fields (application/json): - `status` (string) Example: "success" - `data` (array) - `data.local_time` (string) Example: "2025-10-09T10:00:00-06:00" - `data.vigor_index` (number) Vegetation vigor index (0-1) Example: 0.78 - `data.incidence` (number) Pest/disease incidence (%) Example: 12.5 - `data.severity` (number) Severity scale (0-1) Example: 0.32 ## Response 400 fields (application/json): - `status` (string) Example: "error" - `message` (string) Example: "Error message description" - `error` (string) Example: "Detailed error information" ## Response 401 fields (application/json): - `status` (string) Example: "error" - `message` (string) Example: "Error message description" - `error` (string) Example: "Detailed error information" ## Response 500 fields (application/json): - `status` (string) Example: "error" - `message` (string) Example: "Error message description" - `error` (string) Example: "Detailed error information"