First-principles signal analysis without training data, protocol libraries, or GPUs. Send any time-series. Get structural characterisation back. No signal-specific tuning required.
The API accepts raw time-series data — voltage samples, IQ pairs, ADC readings — and returns a structural characterisation of what the signal is doing. It works on radio signals, sensor streams, financial data, or any continuous measurement.
Your data is converted into state-space trajectories. Adaptive thresholding identifies significant state transitions. Unsupervised anomaly gating filters noise. Spike-based coincidence scoring measures structural similarity. Multi-lag autocorrelation captures temporal patterns. Twelve mathematical signature detectors are defined for the product; seven are live in API v1.0 and may appear in phenomena_detected.
The pipeline runs server-side. You receive only the characterisation — classification tags, temporal profile, anomaly level, and any triggered live detectors.
samples — Array of numbers. Raw voltage, amplitude, IQ magnitude, or any continuous measurement. Minimum 128, maximum 5,000,000.
config — Optional. Defaults work for most signals.
| Field | Description |
|---|---|
characterisation.classification | Array of tags: STRUCTURED, ANTI_CORRELATED, MODULATED, etc. |
characterisation.temporal_profile | CORRELATED, ANTI_CORRELATED, or NEUTRAL |
characterisation.anomaly_level | HIGH, MODERATE, or LOW |
characterisation.confidence | 0.0 – 1.0 classification confidence |
phenomena_detected | Triggered Live / v1.0 detectors only (see status table below); each entry has detector and confidence |
metrics | Raw/anomalous event counts, autocorrelation lags, burst ratio |
processing | Threshold method, trajectory count, processing time |
Run the analysis on the built-in demo signal, or paste your own samples.
The product defines twelve mathematical signatures. Each asks a structural question — not “is this a known protocol?” but “is this signal doing something mathematically unusual?” Seven are live in API v1.0; five are on the roadmap (product direction, not yet returned in phenomena_detected).
confidence is an ordinal score, not a calibrated laboratory probability.
| # | Category | Signature | Structural question | API detector |
Status |
|---|---|---|---|---|---|
| 1 | Physical | Quantum Zeno | Measurement frequency correlates with delayed transitions | quantum_zeno |
Live / v1.0 |
| 2 | Physical | Criticality | Self-organised criticality in event magnitude distribution | criticality |
Live / v1.0 |
| 3 | Physical | Information Backflow | Non-Markovian temporal correlations | information_backflow |
Live / v1.0 |
| 4 | Physical | Fractal Dimension | Chaotic structure in state-space trajectories | — | Roadmap |
| 5 | Physical | Topological Transitions | Phase changes in signal geometry | — | Roadmap |
| 6 | Physical | Penrose OR | Gravity-scale collapse events | penrose_or |
Live / v1.0 |
| 7 | Structural | Weak Values | Anomalous measurement outcomes outside expected bounds | — | Roadmap |
| 8 | Structural | Quantum Darwinism | Environmental redundancy and information copying | quantum_darwinism |
Live / v1.0 |
| 9 | Structural | Retrocausality | Future events correlating with past states | — | Roadmap |
| 10 | Structural | Teleportation Shadow | Cross-channel correlations without direct coupling | teleportation_shadow |
Live / v1.0 |
| 11 | Structural | Simulation Glitches | Quantisation artifacts and periodic patterns | simulation_glitches |
Live / v1.0 |
| 12 | Structural | Consciousness Correlation | Observer-dependent measurement bias | — | Roadmap |
Calculation notes (thresholds, heuristics, pipeline): PHENOMENA_CALCULATIONS.md in the API source repository.