Skip to main content

ZeqRoute — Phase-Aware Routing

Shortest path weighted by HulyaPulse phase coherence. Nodes that are phase-aligned get priority — naturally selects the most synchronized route through the network.

EndpointPOST /api/network/route
Authapi-key
Rate limit60/min
Categorynetwork

Parameters

NameTypeRequiredDescription
sourcestringYesSource node ID or address.
destinationstringYesDestination node ID or address.
hopsnumberNoMax hops allowed (1–32). Default: 8.

Returns

{ route: [{ nodeId, phase, latencyMs, coherenceScore }], totalHops, pathCoherence }

Example

curl -sS -X POST \
-H "Authorization: Bearer zsm_..." \
-H "Content-Type: application/json" \
-d '{
"source": "<source>",
"destination": "<destination>",
"hops": 8
}' \
"https://zeqsdk.com/api/network/route"

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