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

# Health Check

> Check API health status

## Overview

Simple health check endpoint to verify the API is running and responsive. No authentication required.

## Response

<ResponseField name="status" type="string">
  Health status of the API (returns "ok" when healthy)
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET "https://memoryapi-production.up.railway.app/health"
  ```

  ```javascript JavaScript theme={null}
  fetch("https://memoryapi-production.up.railway.app/health")
    .then((response) => response.json())
    .then((data) => console.log(data));
  ```

  ```python Python theme={null}
  import requests

  response = requests.get('https://memoryapi-production.up.railway.app/health')
  print(response.json())
  ```
</RequestExample>

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "status": "ok"
  }
  ```
</ResponseExample>
