HINTON LAB/Documentation

One platform, every reference.

Everything you need to operate a Verdant farm, integrate the OS with your stack, or author a new crop recipe. Versioned per release. Last updated April 2026 against Verdant OS 3.2.

Quickstart API reference
One platform,
OS version
3.2.1
Endpoints
84
SDKs
Py · TS · Go
Recipes
47
/ QUICKSTART

Pull a slot's last 24 h of canopy density.

from verdant import Client

vd = Client(token="vdnt_live_…")

slot = vd.sites["rotterdam-1"].rooms["B2"].slots["A-04"]
series = slot.telemetry(metric="canopy_density", window="24h")

for t, v in series:
    print(f"{t.isoformat()}  {v:.3f}")
/ Browse