GET
/
health
import { AtomaSDK } from "atoma-sdk";

const atomaSDK = new AtomaSDK({
  bearerAuth: process.env["ATOMASDK_BEARER_AUTH"] ?? "",
});

async function run() {
  const result = await atomaSDK.health.health();

  // Handle the result
  console.log(result);
}

run();
{
  "message": "<string>"
}

Response

200
application/json

Service is healthy

The response is of type object.