All systems operational

Device telemetry
for modern teams

Collect, process, and visualize telemetry data from your entire IoT fleet. Real-time monitoring with a REST API your devices already understand.

dashboard.metriqo.net
Active Devices
2,847
+12.3% this week
Events / min
14.2k
+4.1% avg
p95 Latency
48ms
-2.8ms from last

Built for production IoT workloads

Everything you need to monitor device health, track performance metrics, and respond to anomalies in real time.

Telemetry Ingestion

Push metrics from any device via a single POST endpoint. Supports JSON payloads with automatic schema detection and timestamp normalization across time zones.

Real-time Dashboards

Build visual dashboards for any metric combination. Track temperature, voltage, throughput, error rates, or any custom field your firmware reports.

Smart Alerts

Define rules that trigger notifications when device metrics exceed safe operating ranges. Deliver alerts via webhook, email, or Slack integration.

REST API

A clean, versioned API that works with any HTTP client. Register devices, query historical metrics, and manage alert configurations programmatically.

Ship telemetry in
five lines of code

Send device data to the /api/v2/telemetry endpoint using any HTTP client. JSON in, insights out. No SDKs required, no vendor lock-in.

View API Reference
send_telemetry.sh
# 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 }
0%
Uptime SLA
0ms
p95 ingest latency
0B
Events processed daily

Start building for free

Get your API key in under a minute. No credit card required. Free tier includes 10,000 events per day.