Documentation

DiagAI Docs

Everything you need to deploy, configure, and extend DiagAI — from first reading to full fleet.

Search docs…⌘K
01

Quick Start — 5 minutes to your first anomaly detection

  1. Sign up at /signup and copy your API key from Settings → API Keys.
  2. Register your first equipment with POST /api/equipment
  3. Push a sensor reading with POST /api/sensor/ingest — see schema below.
  4. View the result in the Dashboard or read the JSON response directly.

Minimal ingest payload

{
"machine_id": "eq-001", // string — your equipment ID
"air_temperature": 298.1, // number — Kelvin
"process_temperature": 308.6, // number — Kelvin
"rotational_speed": 1551, // number — RPM
"torque": 42.8, // number — Nm
"tool_wear": 0, // number — minutes
"machine_type": "M", // string — H | L | M
}
Looking for full endpoint schemas?API Reference →