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": "ok"
},
"meta": {
"request_id": "550e8400-e29b-41d4-a716-446655440000"
}
}System
Health Check
Returns the operational status of the API. Does not require authentication.
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": "ok"
},
"meta": {
"request_id": "550e8400-e29b-41d4-a716-446655440000"
}
}Last modified on August 19, 2026

