Quickstart
← BackThis is the minimum path: create account → get API key → send a flow → see an alert. (We’ll replace placeholders as Phase 4 progresses.)
1) Create an account
Go to the app and sign up. You’ll receive an org and default API key.
We’re in early access. Request access here: https://traceflux.io/#early-access
2) Get an API key
Copy the API key from the dashboard.
TRACEFLUX_API_KEY=YOUR_KEY_HERE
3) Send telemetry
Send one event to ingestion.
curl -X POST https://api.traceflux.io/ingest \
-H "Authorization: Bearer $TRACEFLUX_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"telemetry": "flow",
"service": "edge-gw",
"environment": "production",
"region": "us-east-1",
"asn": 15169,
"src_ip": "10.12.4.22",
"dst_ip": "172.16.8.90",
"dst_port": 443,
"bytes": 482193,
"latency_ms": 92
}'4) Confirm API health
Verify the API is reachable.
curl -s https://api.traceflux.io/health | cat
Troubleshooting
- If you see 401: your API key is missing/invalid.
- If you see 403/blocked: check CORS or CloudFront/WAF rules.
- If nothing shows up: confirm you are hitting the right endpoint and region.
