Heartbeat Monitors
Last updated
Last updated
GET /api/heartbeats HTTP/1.1
Host: app.hydrozen.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
[
{
"id": "text",
"name": "text",
"slug": "text",
"expected_interval": 1,
"last_ping": "2026-01-22T09:20:14.691Z"
}
]POST /api/heartbeats HTTP/1.1
Host: app.hydrozen.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 37
{
"name": "text",
"expected_interval": 1
}{
"id": "text",
"name": "text",
"slug": "text",
"expected_interval": 1,
"last_ping": "2026-01-22T09:20:14.691Z"
}GET /api/heartbeats/{id} HTTP/1.1
Host: app.hydrozen.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"id": "text",
"name": "text",
"slug": "text",
"expected_interval": 1,
"last_ping": "2026-01-22T09:20:14.691Z"
}DELETE /api/heartbeats/{id} HTTP/1.1
Host: app.hydrozen.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*