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
client = AhoSdk.system(api_key: ENV["AHO_API_KEY"])
result = client.health.get
import { AhoSdk } from '@aho/sdk';
const client = AhoSdk.system({ apiKey: process.env.AHO_API_KEY });
const result = await client.health.get;
curl -X GET 'https://api.aho.com/v1/health'
Try It
Log in to test this endpoint directly from the documentation.
Log in