ZeqMesh Communications
Off-grid mesh communication protocol. Peer-to-peer message relay using LoRa/BLE with Zeqond time-sync for disaster zones where cell towers are down.
| Endpoint | POST /api/comms/mesh |
| Auth | api-key |
| Rate limit | 15/min |
| Category | communications |
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
nodeId | string | Yes | Destination mesh node ID. |
payload | string | Yes | Message payload (max 256 bytes for LoRa). |
priority | string | No | 'normal', 'emergency', 'broadcast'. |
Returns
{ relayPath, hops, deliveryStatus, zeqond, meshLatency_ms }
Example
curl -sS -X POST \
-H "Authorization: Bearer zsm_..." \
-H "Content-Type: application/json" \
-d '{
"nodeId": "<nodeId>",
"payload": "<payload>",
"priority": "normal"
}' \
"https://zeqsdk.com/api/comms/mesh"
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-mesh-comms.