Skip to main content
GET /v1/health Public

Health check

Public health check endpoint. Returns the current server status and timestamp.
No authentication required. Useful for load balancers and monitoring systems.

Response

200 Service is healthy

Content-Type: application/json

status * string

Example: ok

timestamp * string (date-time)

Code Examples

import os
from aho_sdk import AhoSdk

client = AhoSdk.system(api_key=os.environ["AHO_API_KEY"])

result = client.health.get

Try It

Log in to test this endpoint directly from the documentation.

Log in