ZeqDetect — Signal Detection
Weak signal detection using HulyaPulse phase correlation. Signals buried in noise become detectable when correlated against the known 1.287 Hz reference.
| Endpoint | POST /api/telecom/detect |
| Auth | api-key |
| Rate limit | 30/min |
| Category | telecom |
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
samples | array | Yes | Raw signal samples. |
sampleRateHz | number | Yes | Sample rate. |
targetFreqHz | number | No | Expected signal frequency. |
Returns
{ detected, snrDb, frequency, phase, amplitude, correlationPeak }
Example
curl -sS -X POST \
-H "Authorization: Bearer zsm_..." \
-H "Content-Type: application/json" \
-d '{
"samples": [],
"sampleRateHz": 0,
"targetFreqHz": 0
}' \
"https://zeqsdk.com/api/telecom/detect"
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-signal-detect.