Targets
Healing
Notes
Secure
Target Acquisition
f_kill (MHz)
Z_v Impedance
Drift (MHz/kDa)
Safety Margin (mV)
Athermal Pulse (MHz)
S_topo / E_c
MW (kDa)
Density Proxy
Atoms
Safety Lock
QVR Pulse Waveform
Awaiting target lock…
Batch Auto-Ingest
Viral Decoherence Index
PDB Name Category MW (kDa) Z_v f_kill (MHz) Drift (MHz/kDa) Margin (mV) Safety Logged
Loading index…
Add Custom Frequency
Frequency Spectrum Preview
Coherence spectrum — Solfeggio & Schumann catalogue
Resident Healing Frequency Catalog
Name Category Hz MHz Resonance Type Zeta Align (mV) Coherence Status Food Association
〰️
Loading catalog…
New Research Entry
Vault Overview
0
Total Notes
0
Viral
0
Healing
0
Food
0
Protocol
0
General

All research notes are stored in the local SQLite database and included in JSON/CSV exports. Cross-reference a note with a PDB ID or healing frequency entry using the linked fields above.

📋
No notes yet — add your first research entry above.
Data Export

CSV — All three tables (Viral Targets, Healing Frequencies, Research Notes) in a single file. Compatible with Excel, Google Sheets, pandas.


JSON — Full database export with all tables as keyed arrays. Suitable for direct API consumption and Python scripts.


Firebase JSON — Pathogen index in the exact format produced by the QAG Viral V2 Colab notebook — compatible with Firebase/NoSQL backends and the QAG Master Pathogen Index schema.

Platform Statistics
Viral Targets
Healing Freqs
Research Notes
Secure Targets
Avg f_kill MHz
Max f_kill MHz
Prion Targets
Bacterial
Fungal

Category breakdown — Viral Targets:
REST API Reference — External Tool Connectivity

All endpoints return JSON. Base path: /api/v1/ Suitable for Python scripts, notebooks, Notion integrations, or any HTTP client.

Viral Targets
GET/api/v1/targetsAll targets — optional ?category=RESPIRATORY
GET/api/v1/targets/:pdb_idSingle target by PDB ID
POST/api/v1/targetsIngest new PDB — body: {pdb_id, category}
POST/api/v1/targets/batchRun full curated registry batch ingest
Healing Frequencies
GET/api/v1/healingAll healing freqs — optional ?category=SOLFEGGIO
GET/api/v1/healing/:idSingle entry by ID
POST/api/v1/healingAdd custom freq — body: {name, frequency_hz, category, …}
POST/api/v1/healing/seedRe-run canonical seed (idempotent)
DEL/api/v1/healing/:idDelete a healing frequency entry
Research Vault
GET/api/v1/researchAll notes — optional ?category=VIRAL
POST/api/v1/researchAdd note — body: {title, content, category, tags, linked_pdb}
DEL/api/v1/research/:idDelete a research note
Export & Platform
GET/api/v1/statsUnified platform statistics
GET/api/v1/export/csvDownload all tables as CSV
GET/api/v1/export/jsonFull database JSON export
GET/api/v1/export/firebaseFirebase-format pathogen index (Colab-compatible)
GET/api/healthzDeployment health check — returns engine version

Python example:

import requests
base = "https://YOUR-REPL-URL/api/v1"

# Get all viral targets
targets = requests.get(f"{base}/targets").json()["data"]

# Get all healing frequencies (Solfeggio only)
solfeggio = requests.get(f"{base}/healing?category=SOLFEGGIO").json()["data"]

# Add a research note
note = requests.post(f"{base}/research", json={
    "title": "528 Hz + Spirulina Protocol",
    "content": "Observations from 30-day protocol...",
    "category": "HEALING",
    "tags": "528hz, spirulina, dna-repair",
    "linked_pdb": "6VXX"
}).json()