Karia
Guides

Utilities

Verify API health and basic connectivity before deeper integration work

Utilities Guide

Use the utility endpoints for quick service health checks and lightweight connectivity validation.

Primary Workflow

  1. Call GET /utils/health to verify the API is healthy.
  2. Call GET /utils/ping for a simple connectivity check.
  3. Run these checks before exercising authenticated or workflow-heavy endpoint families.

Check API health

Use this endpoint to confirm the API is available before running authenticated or workflow-heavy requests.
Open reference
GET/utils/health
Authorizationv
No authorization required.
Pathv
Endpoint
/utils/health
Operation ID
util.health
Bodyv
{
  "response": {
    "ok": true,
    "status": "healthy"
  }
}

Ping the API

Use this endpoint for a lightweight connectivity check from your integration environment.
Open reference
GET/utils/ping
Authorizationv
No authorization required.
Pathv
Endpoint
/utils/ping
Operation ID
util.ping
Bodyv
{
  "response": {
    "ok": true,
    "message": "pong"
  }
}

On this page