div strong 🔨 In Development — This section is still being developed and may change. Health check endpoint for pipeline connector service. Returns service status and configuration information. No authentication required. ## Returns Returns service health status, version, supported namespaces, and maximum batch size. ```bash cURL curl https://api.aitronos.com/v1/pipeline/health ``` ```python Python import requests response = requests.get("https://api.aitronos.com/v1/pipeline/health") health = response.json() ``` ```javascript JavaScript const response = await fetch('https://api.aitronos.com/v1/pipeline/health'); const health = await response.json(); ``` ## Response ```json { "status": "healthy", "service": "pipeline-connector", "version": "1.0.0", "supported_namespaces": "all", "max_batch_size": 1000 } ```