v1
latestOpenAPI 3.0.32026-07-13331437.0 KBHealthchecks
Create a healthcheck
Creates a new healthcheck. Supports simple (periodic interval) and cron (cron expression) modes.
post/v1/healthchecks
Request body
Example request
{
"name": "Daily Backup Job",
"grace_period_value": 5,
"cron": "0 2 * * *"
}Response
Healthcheck created
Example response
{
"healthcheck": {
"uuid": "tok_abc123def456",
"name": "Daily Backup Job",
"pingUrl": "https://hc.hyperping.io/tok_abc123def456",
"cron": "0 2 * * *",
"timezone": "America/New_York"
}
}