Skip to content

Health Check

health_check()

Liveness probe endpoint.

Returns:

Name Type Description
dict

Static status payload indicating service health.

Source code in routers/health_check.py
 6
 7
 8
 9
10
11
12
13
@router.get("/health")
def health_check():
    """Liveness probe endpoint.

    Returns:
        dict: Static status payload indicating service health.
    """
    return {"status": "healthy"}