Skip to main content

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.

EndpointPOST /api/comms/mesh
Authapi-key
Rate limit15/min
Categorycommunications

Parameters

NameTypeRequiredDescription
nodeIdstringYesDestination mesh node ID.
payloadstringYesMessage payload (max 256 bytes for LoRa).
prioritystringNo'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.