ZeqHeart — Cardiac Modeling
Cardiac electrophysiology modeling using coupled oscillator equations synced to HulyaPulse. Simulates action potential propagation and arrhythmia detection.
| Endpoint | POST /api/health/heart/model |
| Auth | api-key |
| Rate limit | 10/min |
| Category | healthcare |
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
heartRateBpm | number | No | Resting heart rate. Default: 72. |
ecgData | array | No | ECG sample data for analysis. |
modelType | string | No | 'fhn' (FitzHugh-Nagumo), 'hodgkin-huxley', 'simple'. Default: 'fhn'. |
Returns
{ actionPotential, rhythmClassification, anomalies, qrsIntervals, pulseSync }
Example
curl -sS -X POST \
-H "Authorization: Bearer zsm_..." \
-H "Content-Type: application/json" \
-d '{
"heartRateBpm": 72,
"ecgData": [],
"modelType": "fhn"
}' \
"https://zeqsdk.com/api/health/heart/model"
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-heartmodel.