Health

Public health check endpoint for the HookSentry API.

Check API health

GET /health

Public health check endpoint. Returns API status and the current UTC timestamp. Does not require authentication and isn't versioned under /api/v1.

Auth: none

using var client = new HttpClient();
var response = await client.GetAsync("https://api.hooksentry.com/health");
var body = await response.Content.ReadAsStringAsync();

Return codes

  • 200 OK — API is healthy
{
  "status": "healthy",
  "timestamp": "2026-07-03T14:32:00.000Z"
}