ZeqSMS
HulyaPulse-synced SMS delivery. Encodes payload with R(t) modulation for tamper-evident timestamps. Supports international E.164 routing, delivery receipts, and Zeqond-stamped audit logs.
| Endpoint | POST /api/comms/sms |
| Auth | api-key |
| Rate limit | 30/min |
| Category | communications |
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
to | string | Yes | Destination phone number (E.164 format). |
body | string | Yes | Message body (max 1600 chars, auto-segments). |
zeqondStamp | boolean | No | Embed Zeqond timestamp in metadata. |
Returns
{ messageId, status, zeqond, phase, deliveryEstimate, segments }
Example
curl -sS -X POST \
-H "Authorization: Bearer zsm_..." \
-H "Content-Type: application/json" \
-d '{
"to": "<to>",
"body": "<body>",
"zeqondStamp": true
}' \
"https://zeqsdk.com/api/comms/sms"
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-sms.