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

> ## Agent Instructions
> Reconify's API reference is read-only for customer data. Do not invent endpoints or authentication behavior beyond the OpenAPI contract.
> The public OpenAPI document contains only the external /v1 contract. Dashboard business routes are intentionally excluded.

# Get public health status

> Returns a minimal public availability signal without exposing infrastructure details.



## OpenAPI

````yaml /openapi/reconify.openapi.json get /v1/health
openapi: 3.1.0
info:
  description: Public event ingestion and issue operations for Reconify.
  title: Reconify API
  version: 1.0.0
servers:
  - description: Reconify API root
    url: https://api.reconifyhq.com
security: []
tags:
  - description: Submit events through the public v1 ingestion API.
    name: Event Ingestion API
  - description: Public API metadata and health checks.
    name: API Metadata
  - description: Read received events and evidence linked to issues.
    name: Event Reads
  - description: Discover and coordinate evidence-backed monitoring issues.
    name: Issue Operations
  - description: Read organization details and assignable member IDs.
    name: Organization
paths:
  /v1/health:
    get:
      tags:
        - API Metadata
      summary: Get public health status
      description: >-
        Returns a minimal public availability signal without exposing
        infrastructure details.
      operationId: get-health
      responses:
        '200':
          content:
            application/json:
              example:
                status: operational
              schema:
                $ref: '#/components/schemas/Health'
          description: OK
components:
  schemas:
    Health:
      properties:
        status:
          description: Public service availability status.
          enum:
            - operational
          type: string
      required:
        - status
      type: object

````