Quick Start
Quick Start
This guide will get you posting telemetry in under 5 minutes.
1. Install the CLI
Run the installer:
curl -fsSL https://dev.constellation-io.com/install.sh | shOr install via pip:
pip install constellation-cli2. Authenticate
Log in with your operator credentials:
constellation loginThis opens your browser for authentication. After logging in, your credentials are stored locally at ~/.constellation/credentials.
Alternatively, set your token directly:
constellation config set token YOUR_API_TOKEN3. Post Your First Telemetry
Post a single telemetry update:
constellation telemetry post \ --node sat-001 \ --type satellite \ --snr 25.5 \ --latency 12.3 \ --throughput 45.6Or post from a JSON file:
constellation telemetry post -f telemetry.jsonExample telemetry.json:
{ "node_id": "sat-001", "node_type": "satellite", "timestamp": "2026-01-16T20:00:00Z", "snr_db": 25.5, "latency_ms": 12.3, "throughput_gbps": 45.6, "utilization": 0.75, "queue_depth_gb": 15.2}4. Verify Your Data
Check that your telemetry was received:
constellation topology getThis returns the current network graph with your node’s latest metrics.
5. Set Up Automated Posting (Optional)
Configure a cron job to post telemetry automatically:
constellation daemon start --interval 60This posts telemetry every 60 seconds. View daemon status:
constellation daemon statusUsing cURL Directly
If you prefer raw HTTP calls:
# Set your tokenexport TOKEN="your-api-token"
# Post telemetrycurl -X POST https://api.constellation-io.com/api/v1/telemetry \ -H "Authorization: Bearer $TOKEN" \ -H "Content-Type: application/json" \ -d '{ "node_id": "sat-001", "node_type": "satellite", "timestamp": "2026-01-16T20:00:00Z", "snr_db": 25.5, "latency_ms": 12.3, "throughput_gbps": 45.6 }'Response:
{ "success": true, "message": "Telemetry data received successfully", "telemetry_id": "tel-sat-001-1705434000", "received_at": "2026-01-16T20:00:00.123Z"}Next Steps
- Batch Posting - Post up to 1,000 telemetry points at once
- Predictions - Get ML-powered forecasts for your nodes
- Architecture Overview - Understand how Constellation works