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.
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
Getting started
- Quickstart: your first 5 minutes with Verdant OSPair a device, pull telemetry, schedule a harvest.
- ConceptsSites, rooms, racks, slots — the data model behind every farm.
- Auth & API keysPersonal tokens, service accounts, scope model.
- SDKsOfficial Python, TypeScript, and Go clients with full type coverage.
Hardware
- Verdant One spec sheetPower, footprint, water, network — full specs in one PDF.
- Verdant Bay rack layouts6 reference floorplans, from 8 m² to 220 m².
- Verdant Tower civil drawingsSlab loads, HVAC, drainage, and electrical for general contractors.
- Sensor stackENV-1 environment puck, OPT-2 canopy cam, FLO-3 in-line flow meter.
Verdant OS API
- REST reference/v3/sites, /v3/rooms, /v3/recipes, /v3/harvests — 84 endpoints, OpenAPI 3.1.
- Realtime telemetry (WebSocket)Per-slot canopy state at 4-second tick.
- Webhooksharvest.ready, recipe.completed, alert.* — signed payloads with replay protection.
- GraphQL gatewaySingle endpoint for the fleet ops dashboard. Read-only.
