Build on Plant Intelligence.
The Vriksh Vani REST API provides programmatic access to real-time NIH-01 bio-signal streams, species data, and smart home automation triggers. CC BY 4.0 open data. OAuth2 authentication.
Quick Start
# Install the Vriksh Vani SDK
npm install @vrikshvani/sdk
# Fetch live readings from your NIH-01
import { VrikshVaniClient } from '@vrikshvani/sdk';
const client = new VrikshVaniClient({
apiKey: process.env.VRIKSHVANI_API_KEY,
});
const readings = await client.bioReadings.stream({
hubId: 'nih01-xxxxx',
metrics: ['vpd', 'thermalDelta', 'gasResistance'],
});
readings.on('data', (reading) => {
console.log(`VPD: ${reading.vpd} kPa | Emotion: ${reading.nteEmotion}`);
});API Endpoints
Base: https://api.vrikshvani.com/api/v1/bio-readingsStream live VPD, thermal delta, and gas resistance readings from connected NIH-01 hubs.
/api/v1/plant-profilesRetrieve all plant profiles associated with your account, including species, NTE™ emotion states, and health scores.
/api/v1/speciesQuery the Vriksh Vani species database for validated VPD targets, care parameters, and model confidence scores.
/api/v1/waitlist/joinSubmit a waitlist registration for Vriksh Vani NIH-01 Batch 01.
/api/v1/newsletter/subscribeSubscribe an email address to the Vriksh Vani newsletter.
/api/v1/enterprise/quoteSubmit an enterprise fleet quote request. Triggers automatic sales team notification.
Authentication
All API requests require a Bearer token in the Authorization header. Tokens are scoped per-hub and expire every 90 days.
Authorization: Bearer vv_live_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Webhooks
Register a webhook URL to receive real-time event pushes when NIH-01 triggers a biometric alert, NTE™ emotion state changes, or a health score threshold is crossed.
alert.vpd_thresholdalert.thermal_stressalert.soil_healthemotion.state_changehealth.score_updateOpen Data Downloads
All Open Data Programme datasets are available for direct download without authentication. Licensed CC BY 4.0.
SDKs & Libraries
JavaScript / TypeScript
✓ AvailablePython
✓ AvailableGo
~ BetaSwift (iOS)
○ Roadmap Q2 2027Kotlin (Android)
○ Roadmap Q2 2027