> ## Documentation Index
> Fetch the complete documentation index at: https://docs.apowerb.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Health Legacy Alias

> Backward-compatible alias for the old ``/health`` endpoint.

Prefer ``/health/live`` (fast) or ``/health/ready`` (dependency
aware) for new probes.



## OpenAPI

````yaml /api-reference/openapi.json get /health
openapi: 3.1.0
info:
  title: apowerb API
  description: REST API of the apowerb agentic framework (open-source edition).
  version: 0.1.2
  license:
    name: MIT
    url: https://github.com/apowerb/apowerb/blob/main/LICENSE
servers:
  - url: https://api.example.com
    description: Your apowerb instance
  - url: http://localhost:8000
    description: Local stack
security: []
paths:
  /health:
    get:
      summary: Health Legacy Alias
      description: |-
        Backward-compatible alias for the old ``/health`` endpoint.

        Prefer ``/health/live`` (fast) or ``/health/ready`` (dependency
        aware) for new probes.
      operationId: health_legacy_alias_health_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}

````

## Related topics

- [Notifier Health Endpoint](/api-reference/health/notifier-health-endpoint.md)
- [Run Eval Legacy](/api-reference/evaluation/run-eval-legacy.md)
- [Get Eval Result Legacy](/api-reference/evaluation/get-eval-result-legacy.md)
- [List Eval Results Legacy](/api-reference/evaluation/list-eval-results-legacy.md)
- [List Eval Sets Legacy](/api-reference/evaluation/list-eval-sets-legacy.md)
