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.
| Endpoint | POST /api/auth/mesh/verify |
| Auth | api-key |
| Rate limit | 30/min |
| Category | identity |
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
zid | string | Yes | ZID to verify across the mesh. |
nodes | array | No | Mesh 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.