Skip to main content

ZeqPLNB — Phase-Locked Neural Bridge

Project an observer-supplied 1-D signal (EEG band, breath cycle, finger-tap, etc.) onto the 1.287 Hz HulyaPulse carrier and return coherence γ, observer phase φ_obs, the PLNB1 amplitude, and a recommended awareness-family operator chain. v1 returns the recommendation only — execution is left to a follow-up /api/zeq/compute call.

EndpointPOST /api/zeq/plnb/observe
Authapi-key
Rate limit30/min
Categorybiology

Parameters

NameTypeRequiredDescription
signalarrayYesReal-valued samples (16–4096) of the observer signal.
sampleRateHznumberYesSample rate of signal in Hz; must satisfy Nyquist for HulyaPulse (≥ 2.574 Hz).
intentstringNoOpaque caller-supplied intent label, max 256 chars.

Returns

{ zeqondTick, phase, coherence: { gamma, inPhase, quadrature, phaseObsRad }, plnb1, recommendation: { operators, rationale }, precisionBound, integrityTag }

Example

curl -sS -X POST \
-H "Authorization: Bearer zsm_..." \
-H "Content-Type: application/json" \
-d '{
"signal": [],
"sampleRateHz": 0,
"intent": "<intent>"
}' \
"https://zeqsdk.com/api/zeq/plnb/observe"

This protocol is a named building block — one of the operations you compose inside a state contract. Call it directly with the request above, or invoke it from a contract that fires on your machine's clock. Browse the whole library at GET /api/protocols; fetch this one at GET /api/protocols/zeq-plnb.