Skip to main content
GET
/
health
import os
from sarj_platform_sdk import SDK

sdk = SDK(api_key_auth=os.environ.get("SARJ_API_KEY", ""))
print(sdk.system.get_health().data.status)  # "ok"
{
  "data": {
    "status": "<string>"
  },
  "meta": {
    "request_id": "550e8400-e29b-41d4-a716-446655440000"
  }
}

Response

200 - application/json

Successful Response

data
HealthStatus · object
required

Represents the operational status of the API.

meta
ResponseMeta · object

Contains request-level metadata included with every public API response.

Last modified on May 17, 2026