Platform API ClientClient group1 methodsQuotasMethods
Quotas
Fetch project quota configuration and current period usage counters for each metered operation type.
Limit visibilityPeriod windowsQuota actions
Quotas
quotas.get()
Generated exampleHTTP endpoint wrapperGET /api/v1/quotasGET /api/v1/quotas
Signature
get(): Promise<QuotaResponse>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.quotas.get();
console.log(response);Response
// Response type
Promise<QuotaResponse>
// Inspect concrete fields from your runtime payload:
// console.log(JSON.stringify(response, null, 2));