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

# Health Check

> Returns HTTP 200 OK to indicate the service is healthy.



## OpenAPI

````yaml /api/swagger.json get /health
openapi: 3.0.1
info:
  title: BLOOD-V3 API
  contact: {}
  version: 0.0.1
servers:
  - url: //localhost:50000/api/v1
security: []
paths:
  /health:
    get:
      tags:
        - Health
      summary: Health Check
      description: Returns HTTP 200 OK to indicate the service is healthy.
      responses:
        '200':
          description: OK
          content: {}

````