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.
| Endpoint | POST /api/network/route |
| Auth | api-key |
| Rate limit | 60/min |
| Category | network |
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
source | string | Yes | Source node ID or address. |
destination | string | Yes | Destination node ID or address. |
hops | number | No | Max 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.