Collect, process, and visualize telemetry data from your entire IoT fleet. Real-time monitoring with a REST API your devices already understand.
Everything you need to monitor device health, track performance metrics, and respond to anomalies in real time.
Push metrics from any device via a single POST endpoint. Supports JSON payloads with automatic schema detection and timestamp normalization across time zones.
Build visual dashboards for any metric combination. Track temperature, voltage, throughput, error rates, or any custom field your firmware reports.
Define rules that trigger notifications when device metrics exceed safe operating ranges. Deliver alerts via webhook, email, or Slack integration.
A clean, versioned API that works with any HTTP client. Register devices, query historical metrics, and manage alert configurations programmatically.
Send device data to the /api/v2/telemetry endpoint using any HTTP client. JSON in, insights out. No SDKs required, no vendor lock-in.
# Push device metrics to Metriqo curl -X POST https://metriqo.net/api/v2/telemetry \ -H "Authorization: Bearer mqk_live_..." \ -H "Content-Type: application/json" \ -d '{ "device_id": "sensor-gw-0417", "metrics": { "cpu_temp": 62.4, "mem_used_mb": 214, "uptime_sec": 874200, "error_count": 0 } }' # Response: 201 Created # { "status": "accepted", "points_written": 4 }
Get your API key in under a minute. No credit card required. Free tier includes 10,000 events per day.