ZeqVitals — Biosignal Processing
Biosignal processing synchronized to HulyaPulse. ECG, EEG, SpO2 waveforms aligned to the 1.287 Hz grid — universal temporal reference for all physiological data.
| Endpoint | POST /api/health/vitals/process |
| Auth | api-key |
| Rate limit | 30/min |
| Category | healthcare |
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
signalType | string | Yes | 'ecg', 'eeg', 'spo2', 'emg', 'respiration'. |
samples | array | Yes | Array of numeric sample values. |
sampleRateHz | number | Yes | Sample rate of input signal. |
Returns
{ processed, pulseAligned, features: { heartRate?, dominantFreq?, peaks? }, zeqondSync }
Example
curl -sS -X POST \
-H "Authorization: Bearer zsm_..." \
-H "Content-Type: application/json" \
-d '{
"signalType": "<signalType>",
"samples": [],
"sampleRateHz": 0
}' \
"https://zeqsdk.com/api/health/vitals/process"
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-vitals.