| Name | Category | Hz | MHz | Resonance Type | Zeta Align (mV) | Coherence | Status | Food Association | |
|---|---|---|---|---|---|---|---|---|---|
Loading catalog… | |||||||||
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.
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.
All endpoints return JSON. Base path: /api/v1/
Suitable for Python scripts, notebooks, Notion integrations, or any HTTP client.
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()