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

# Health Check

> Check API status

Check if the Engramme API is running and healthy. No authentication required.

<RequestExample>
  ```bash curl theme={null}
  curl https://memorymachines-gateway-prod-btf57kda.uc.gateway.dev/v1/health
  ```

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

  response = requests.get(
      "https://memorymachines-gateway-prod-btf57kda.uc.gateway.dev/v1/health"
  )
  print(response.json())
  ```

  ```javascript JavaScript theme={null}
  const response = await fetch(
    'https://memorymachines-gateway-prod-btf57kda.uc.gateway.dev/v1/health'
  );
  console.log(await response.json());
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "status": "healthy",
    "message": "Memory Machines Platform API is running."
  }
  ```
</ResponseExample>

## Use Cases

* **Monitoring**: Check API availability from your monitoring system
* **Debugging**: Verify connectivity before troubleshooting other issues
* **Load Balancers**: Configure health checks for high availability setups
