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

# Health check

> Get a 200 OK response if the API is in healthy state



## OpenAPI

````yaml get /health
openapi: 3.1.1
info:
  version: 1.0.0
  title: Findly API
servers:
  - url: https://api.findly.ai/v1
security: []
paths:
  /health:
    get:
      summary: Health check
      description: Get a 200 OK response if the API is in healthy state
      responses:
        '200':
          description: Success
          content:
            text:
              example: OK

````