Platform API ClientClient group1 methodsBillingMethods

Billing

Retrieve projected billing summaries for current tier usage and compare scenario deltas against other tiers.

Projected chargesTier comparison

Billing

billing.summary()
Generated exampleHTTP endpoint wrapperGET /api/v1/billing/summary

GET /api/v1/billing/summary

Signature

summary(): Promise<BillingSummaryResponse>
TypeScript SDKTypeScript
import { ArelisClient } from "@arelis-ai/governance-api-client";

const client = new ArelisClient({
  baseUrl: "https://api.arelis.digital",
  apiKey: process.env.ARELIS_API_KEY,
});

const response = await client.billing.summary();
console.log(response);

Response

// Response type
Promise<BillingSummaryResponse>

// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));