ZeqText
TESC-encrypted messaging protocol. End-to-end AES-256-GCM with Phase-Locked Authentication Tags (PLATs) that expire every 0.777s. TESC UID serves as your phone number. WebSocket real-time delivery, typing indicators, read receipts, offline message queue, entanglement chain replay protection.
| Endpoint | POST /api/tesc/send |
| Auth | api-key |
| Rate limit | 60/min |
| Category | security |
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
message | string | Yes | Plaintext message to encrypt and send via TESC channel |
channelId | string | No | TESC channel ID (auto-generated if omitted) |
recipientUid | string | No | TESC UID of recipient |
Returns
{ protocol, channelId, encrypted, iv, plat, zeqond, phase, R_t, entanglementChain, expiresAt, ttlMs }
Example
curl -sS -X POST \
-H "Authorization: Bearer zsm_..." \
-H "Content-Type: application/json" \
-d '{
"message": "<message>",
"channelId": "<channelId>",
"recipientUid": "<recipientUid>"
}' \
"https://zeqsdk.com/api/tesc/send"
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-text.