Integrate Larmeo capabilities into your own monitoring and automation systems.
The Larmeo API provides programmatic access to platform configuration, agent status and network measurement data.
API requests require an access token.
Authorization: Bearer YOUR_API_TOKEN
Returns current platform status.
{
"status": "online",
"agents": 12,
"version": "1.5.0"
}
Returns registered agents.
{
"agents": [
{
"id": "agent-001",
"status": "online",
"last_seen": "2026-08-07T10:00:00Z"
}
]
}
Returns collected network metrics.
{
"latency_ms": 24,
"packet_loss": 0.01,
"jitter_ms": 2
}
| 200 | Request completed successfully |
| 401 | Authentication required |
| 403 | Access denied |
| 404 | Resource not found |
| 500 | Internal server error |