Skip to main content

ZeqMesh Identity — Federated

Federated identity across Zeq instances. No central authority — your equation produces the same ZID on ANY node. Mesh verification via ZeqLattice coherence.

EndpointPOST /api/auth/mesh/verify
Authapi-key
Rate limit30/min
Categoryidentity

Parameters

NameTypeRequiredDescription
zidstringYesZID to verify across the mesh.
nodesarrayNoMesh node URLs to query. If omitted, uses default federation peers.

Returns

{ zid, verified, meshNodes, coherenceScore, consensusReached }

Example

curl -sS -X POST \
-H "Authorization: Bearer zsm_..." \
-H "Content-Type: application/json" \
-d '{
"zid": "<zid>",
"nodes": []
}' \
"https://zeqsdk.com/api/auth/mesh/verify"

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-identity-mesh.