v1.0 · Production Ready

Resonance Therapy
Protocol Engine

Circadian-aware binaural beat + Solfeggio frequency generation, powered by the Aeonmi AI language runtime. Personalised protocols. Every session, every frequency, by design.

Live Protocol
Current session — updates with your local time

🎧 Active Resonance Session LIVE

396
BASE CARRIER
Fear Release · Solfeggio
396
LEFT EAR
Sine wave · headphones
398
RIGHT EAR
Sine wave · headphones
2
BINAURAL BEAT
Delta · Deep Sleep
880
2nd HARMONIC
Carrier × 2
40%
CIRCADIAN ENERGY
Night band
LEFT 396hz Stereo binaural waveform RIGHT 398hz
DAWN · 432hz
DAY · 440hz
DUSK · 528hz
NIGHT · 396hz
🎵
1
Sessions Run
🔥
1
Day Streak
20–30min
Recommended Duration
🧠
55%
Deep Coherence Rate
Session History
Your resonance timeline — adaptive learning improves each run
🔥 1-day streak — Keep going

Past Sessions

All
Delta
Theta
Alpha
# Date / Time Band Carrier Beat State Outcome
#1 Delta 396 hz 2 hz Night · Deep Sleep
Deep Coherence
Choose Your Plan
Start free — upgrade when RTPE becomes part of your daily practice
Free
$0/month
The circadian core. One daily protocol, calibrated to right now.
  • 1 session per day
  • Circadian-aware protocols
  • All 4 Solfeggio base tones
  • Basic session history (7 days)
  • Advanced scenarios
  • Swarm consensus advisor
  • API access
  • Mother AI integration
Developer
$49/month
Full API access. Embed RTPE into your own apps, platforms, or AI agents.
  • Everything in Pro
  • REST + WebSocket API
  • 10,000 API calls/month
  • Mother AI bridge endpoint
  • Shard marketplace listing
  • Custom neural fn hooks
  • Webhook protocol delivery
  • Priority support
Get API Access
Enterprise
Custom
White-label RTPE. Deploy inside your product, clinic, or wellness platform.
  • Everything in Developer
  • Unlimited API calls
  • White-label branding
  • Self-hosted option
  • SLA + dedicated support
  • Custom .ai protocol scripting
  • Aeonmi ecosystem co-listing
  • Revenue share via Shard
API Reference
Drop RTPE into any stack — REST endpoints, JSON responses, WebSocket streaming

🔌 RTPE REST API

All endpoints return JSON with full protocol context: carrier frequency, binaural beat, harmonics, swarm consensus, and probabilistic outcome. Authenticate with your API key via Authorization: Bearer sk-rtpe-…

GET
/v1/protocol
Auto-detects UTC time → returns circadian protocol
POST
/v1/protocol/custom
Override band, stress level, duration, scenario
GET
/v1/protocol/harmonics
Full overtone series for any base frequency
POST
/v1/session/record
Log a completed session for adaptive learning
GET
/v1/session/history
Paginated session timeline with outcome analytics
POST
/v1/mother/bridge
Mother AI integration — neural frequency advice
// GET /v1/protocol fetch("https://api.aeonmi.ai/rtpe/v1/protocol", { headers: { "Authorization": "Bearer sk-rtpe-your-key" } }) .then(r => r.json()) .then(data => { // { base_hz: 396, beat_hz: 2, // left_hz: 396, right_hz: 398, // band: "night", state: "delta", // harmonics: [792,1188,…], // outcome: "deep_coherence" } loadIntoAudioEngine(data); });
# Python SDK from aeonmi_rtpe import Client client = Client("sk-rtpe-your-key") protocol = client.protocol.get() print(protocol.base_hz) # 396 print(protocol.beat_hz) # 2 print(protocol.outcome) # deep_coherence

Shard Marketplace Integration

Aeonmi Shard · Plugin Protocol v1
RTPE is fully Shard-ready. Any product in the Aeonmi ecosystem can mount RTPE as a plugin module via the Shard plugin manifest — exposing frequency recommendations, session hooks, and Mother AI bridge calls to any connected agent, dashboard, or third-party integration.
📦 One-line Shard install
🔗 Cross-product session sync
💸 Revenue share via Shard store
🤖 Mother AI hook exposed
🔄 Auto-updates via manifest
🌐 Public listing on aeonmi.ai
// shard.manifest.json — drop this in any Aeonmi product { "plugin": "rtpe", "version": "1.0.0", "source": "aeonmi://shard/rtpe", "mount": "/modules/rtpe", "hooks": ["on_session_start", "on_mother_query", "on_circadian_shift"], "permissions": ["frequency:read", "session:write", "mother:bridge"] }
Aeonmi Ecosystem
Products built on the same Aeonmi AI language runtime — all Shard-compatible