Skip to main content

ZeqMesh — Node Discovery

Decentralized mesh networking with lattice-coherence node discovery. Nodes announce themselves with ZeqPulse state — the mesh self-organizes by phase alignment.

EndpointPOST /api/network/mesh/discover
Authapi-key
Rate limit30/min
Categorynetwork

Parameters

NameTypeRequiredDescription
nodeIdstringYesThis node's identifier.
capabilitiesarrayNoProtocol IDs this node supports.
radiusnumberNoDiscovery radius in hops (1–16). Default: 4.

Returns

{ peers: [{ nodeId, phase, R_t, capabilities, latencyMs }], meshSize, avgCoherence }

Example

curl -sS -X POST \
-H "Authorization: Bearer zsm_..." \
-H "Content-Type: application/json" \
-d '{
"nodeId": "<nodeId>",
"capabilities": [],
"radius": 4
}' \
"https://zeqsdk.com/api/network/mesh/discover"

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-discover.