Connect telemetry into TraceFlux.

Use this documentation to send flow telemetry, validate your workspace API key, verify health status, and confirm tenant-scoped ingestion into TraceFlux.

Send first event
curl -X POST https://api.traceflux.io/flow \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "src_ip": "10.0.1.10",
    "dst_ip": "8.8.8.8",
    "bytes": 4200,
    "packets": 18,
    "protocol": "tcp"
  }'
Authentication Every telemetry request requires Authorization: Bearer <TRACEFLUX_API_KEY>.
Tenant isolation TraceFlux resolves your workspace from the API key and stores telemetry under that org_id.
Expected responses Missing or invalid keys return 401. Valid telemetry returns Flow saved.