GET
/
health
curl -X GET "https://api-integration.ollang.com/health"
{
  "time": 1704711600000,
  "status": "OK"
}

Check the health status of the Integration API service. This endpoint is used to monitor service availability and is typically called by load balancers, monitoring systems, and health check tools to ensure the service is operational.

curl -X GET "https://api-integration.ollang.com/health"

Authorizations

This endpoint does not require any authentication. It is publicly accessible to allow monitoring systems and load balancers to check service health without API keys.

You do not need to enter an X-Api-Key for this endpoint. You can leave the X-Api-Key field empty.

Response

The response contains the current health status of the service with a timestamp and status indicator.

time
number

Unix timestamp (in milliseconds) indicating when the health check was performed.

status
string

Current status of the service. Possible values are: - OK - Service is healthy and operational - NOK - Service is experiencing issues (rarely returned; usually results in HTTP error)

{
  "time": 1704711600000,
  "status": "OK"
}

HTTP Status Codes

200
HTTP Status

OK - Service is healthy and all systems are operational.

500
HTTP Status

Internal Server Error - Service is unhealthy due to internal issues.

503
HTTP Status

Service Unavailable - Service is temporarily unavailable or under maintenance.