Health check endpoint for the pipeline connector service. ## Authentication No authentication required. ## Returns Service health status and configuration information including supported namespaces and maximum batch size. ```bash cURL curl -X GET "https://api.aitronos.com/v1/connectors/pipeline/health?organization_id=org_12345678901234567890123456789012" \ -H "X-API-Key: $FREDDY_API_KEY" ``` ```python Python import os import requests api_key = os.environ["FREDDY_API_KEY"] response = requests.get( "https://api.aitronos.com/v1/connectors/pipeline/health", headers={"X-API-Key": api_key}, params={"organization_id": "org_12345678901234567890123456789012"} ) print(response.json()) ``` ```javascript JavaScript const apiKey = process.env.FREDDY_API_KEY; const orgId = "org_12345678901234567890123456789012"; const response = await fetch( `https://api.aitronos.com/v1/connectors/pipeline/health?organization_id=${orgId}`, { headers: { "X-API-Key": apiKey } } ); const data = await response.json(); console.log(data); ``` ## Response ```json 200 - Healthy { "status": "healthy", "service": "pipeline-connector", "version": "1.0.0", "supported_namespaces": ["clickup"], "max_batch_size": 1000 } ```