| name | ollang-health |
| description | Check the health status of the Ollang integration API. Use when the user wants to verify the API is up and running, or diagnose connection issues. |
Ollang Health Check
Check the availability and health status of the Ollang integration API. This is a public endpoint — no authentication required.
Endpoint
GET https://api-integration.ollang.com/health
Authentication
None required — public endpoint.
Response (200 - Healthy)
{
"time": 1704711600000,
"status": "OK"
}
| Field | Type | Description |
|---|
time | number | Unix timestamp in milliseconds indicating when the health check was performed |
status | string | OK if healthy, NOK if degraded |
Response Codes
| Code | Status |
|---|
200 | API is healthy |
500 | Internal server error |
503 | Service unavailable |
Example (curl)
curl -X GET https://api-integration.ollang.com/health
Behavior
- Send a GET request to the health endpoint
- Display the status and timestamp
- If
status is OK, confirm the API is operational
- If
status is NOK or a 5xx error is returned, report the issue and suggest checking https://status.ollang.com or retrying later