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

# Health Check

> An endpoint that checks and ensures the required services are up and running:
- Redis
- Database
@return Returns elapsed times for each service



## OpenAPI

````yaml GET /healthz
openapi: 3.1.0
info:
  title: Pulze.ai API
  version: 0.1.0
servers: []
security: []
paths:
  /healthz:
    get:
      summary: Health Check
      description: >-
        An endpoint that checks and ensures the required services are up and
        running:

        - Redis

        - Database

        @return Returns elapsed times for each service
      operationId: health_check_healthz_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}

````