ZeqDeepComms — Deep Space Communication
Deep space communication with phase-locked signal recovery. Compensates for light-delay using Zeqond prediction — receiver knows the exact phase the signal was sent at.
| Endpoint | POST /api/space/comms/link |
| Auth | api-key |
| Rate limit | 20/min |
| Category | space |
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
distanceAu | number | Yes | Distance in astronomical units. |
txPowerW | number | Yes | Transmitter power in watts. |
antennaGainDb | number | Yes | Antenna gain in dB. |
frequencyGhz | number | No | Carrier frequency. Default: 8.4 (X-band). |
Returns
{ lightDelaySeconds, dataRateBps, snrDb, bitErrorRate, zeqondOffset, phaseRecovery }
Example
curl -sS -X POST \
-H "Authorization: Bearer zsm_..." \
-H "Content-Type: application/json" \
-d '{
"distanceAu": 0,
"txPowerW": 0,
"antennaGainDb": 0,
"frequencyGhz": 8.4
}' \
"https://zeqsdk.com/api/space/comms/link"
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-deepcomms.