Skip to main content

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.

EndpointPOST /api/tesc/send
Authapi-key
Rate limit60/min
Categorysecurity

Parameters

NameTypeRequiredDescription
messagestringYesPlaintext message to encrypt and send via TESC channel
channelIdstringNoTESC channel ID (auto-generated if omitted)
recipientUidstringNoTESC 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.