ZeqIoT — Device Synchronization
Synchronize thousands of IoT devices to the Zeqond grid. Every sensor reads at the same phase — no clock skew, no time disagreements. Microsecond alignment at global scale.
| Endpoint | POST /api/iot/sync |
| Auth | api-key |
| Rate limit | 120/min |
| Category | iot |
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
deviceId | string | Yes | Device identifier. |
deviceClock | number | Yes | Device's current Unix timestamp (ms). |
sensorType | string | No | Sensor type for calibration. |
Returns
{ correctedTime, driftMs, nextSyncZeqond, devicePhase, networkPhase }
Example
curl -sS -X POST \
-H "Authorization: Bearer zsm_..." \
-H "Content-Type: application/json" \
-d '{
"deviceId": "<deviceId>",
"deviceClock": 0,
"sensorType": "<sensorType>"
}' \
"https://zeqsdk.com/api/iot/sync"
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-iot-sync.