Back to NerveOS by SoliVana

API Documentation

Build on the NerveOS by SoliVana platform. Biometric fusion, AI agents, and protocol management — all available via REST API for licensed partners.

Base URL

https://api.nerveos.ioProduction
https://api.nerveos.devStaging

Authentication

NerveOS by SoliVana uses Bearer token authentication. Obtain a token via the magic-link flow or OAuth integration.

Header
Authorization: Bearer <your_api_token>
POST/api/v1/auth/magic

Request a magic link login email

cURL
curl -X POST https://api.nerveos.io/api/v1/auth/magic \
  -H "Content-Type: application/json" \
  -d '{"email": "dr@yourpractice.com"}'
Response
{"ok": true}
GET/api/v1/me

Get current user profile

cURL
curl https://api.nerveos.io/api/v1/me \
  -H "Authorization: Bearer <token>"
Response
{
  "id": "usr_abc123",
  "email": "dr@yourpractice.com",
  "name": "Dr. Jane Smith",
  "role": "practitioner"
}
POST/api/v1/agent/sol

Chat with the Soli orchestrator agent

cURL
curl -X POST https://api.nerveos.io/api/v1/agent/sol \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer <token>" \
  -d '{"message": "Design a recovery protocol for burnout"}'
Response
{
  "response": "Based on your HRV baseline...",
  "protocol": {
    "sessions": ["float", "contrast"],
    "frequency": "2x weekly"
  }
}
GET/api/v1/biometrics/hrv

Get HRV trend data

cURL
curl https://api.nerveos.io/api/v1/biometrics/hrv?days=30 \
  -H "Authorization: Bearer <token>"
Response
{
  "baseline": 62,
  "current": 71,
  "trend": "+14%",
  "readings": [...]
}

Biometric Layer

HRV, glucose, sleep, wearables

AI Layer

5 specialized clinical agents

Security

HIPAA-ready, SOC-2 aligned

Performance

Edge-deployed, sub-200ms API

SDK & Webhooks

Official SDKs for Node.js, Python, and React Native are in development. Webhook support for biometric events, protocol completions, and billing events is available on Enterprise plans.

Request Enterprise API access