NERVA models every decision surface as a quantum state on the Bloch sphere. Von Neumann entropy governs the output. Low entropy = coherent signal. High entropy = noise dominates. The result is one of five states.
All endpoints are public. No API key required for basic use. Rate limited to 100 requests/hour per IP.
Four modes map domain-specific inputs to the NERVA entropy framework.
Send a real request to the NERVA decision engine and see the output.
{
"mode": "residential",
"inputs": {
"homeValue": 664000,
"medianIncome": 180000,
"medianRent": 1790,
"daysOnMarket": 22,
"mortgageRate": 6.11
},
"horizon": 1
}
const response = await fetch('https://nerva-globe.vercel.app/api/nerva', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ mode: 'residential', inputs: { homeValue: 664000, medianIncome: 180000, medianRent: 1790, daysOnMarket: 22, mortgageRate: 6.11, }, horizon: 1, // 72 hours }), }); const { state, signal, entropy, evGate, why } = await response.json(); console.log(state); // "COMMIT" console.log(signal); // 78.4 console.log(entropy); // 0.2164
import requests response = requests.post( 'https://nerva-globe.vercel.app/api/nerva', json={ 'mode': 'corporate', 'inputs': { 'capRate': 0.052, 'vacancy': 0.18, 'leaseTermAvg': 4.2, 'debtServiceRatio': 1.15, 'climateExposure': 0.3, }, 'horizon': 3, # 6 months } ) data = response.json() print(data['state']) # WAIT print(data['entropy']) # 0.5821 print(data['evGate']) # False
NERVA is grounded in the mathematics of quantum information theory, applied to the structure of real-world decisions.
| Horizon | Label | Decay Factor | What Survives |
|---|---|---|---|
| 0 | 24h — Flash Crisis | 1.00 | Event volatility, news flow, sentiment spikes |
| 1 | 72h — Tactical Window | 0.92 | Short-term momentum, liquidity conditions |
| 2 | 30d — Operational | 0.80 | Supply/demand imbalances, rate trajectory |
| 3 | 6mo — Strategic Arc | 0.65 | Structural fundamentals, policy shifts |
| 4 | 2yr — Investment Cycle | 0.50 | Demographic trends, capital flows |
| 5 | 10yr — Civilizational | 0.35 | Geography, demographics, climate physics |
Seven live data feeds. All free, no credit card, no signup required for public endpoints.