API Reference

Health

This endpoint lets a load balancer or uptime monitor check that the Agent Hub service is up. It is unauthenticated and returns a fixed marker; it does not report the health of any dependency.

Endpoints 1

Paths are relative to /agent-hub-api

Check service health

GET /agent-hub-api/api/agent/health

Returns a marker confirming the service is running.

A lightweight liveness check. It returns a fixed healthy marker whenever the service can answer the request, and takes no parameters.

Authentication
None

Parameters

No parameters.

Returns

Returns a status marker.

Request
curl "$VDF_BASE_URL/agent-hub-api/api/agent/health"
Response 200
{
  "status": "healthy",
  "service": "agent_service"
}