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

# Health Check

> Health check endpoint - verifies connectivity to all dependencies.

Note: No rate limiting on this endpoint - ALB health checks are frequent
and rate limiting causes 429s which mark tasks as unhealthy.



## OpenAPI

````yaml /openapi.json get /health
openapi: 3.1.0
info:
  title: Seamind Backend
  version: 0.1.0
servers: []
security: []
paths:
  /health:
    get:
      summary: Health Check
      description: |-
        Health check endpoint - verifies connectivity to all dependencies.

        Note: No rate limiting on this endpoint - ALB health checks are frequent
        and rate limiting causes 429s which mark tasks as unhealthy.
      operationId: health_check_health_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}

````