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/quotas

GET /api/v1/quotas

Signature

get(): Promise<QuotaResponse>
Python SDKpython
from arelis import create_arelis_platform
import os

platform = create_arelis_platform({
    "baseUrl": "https://api.arelis.digital",
    "apiKey": os.environ["ARELIS_API_KEY"],
})

response = platform.quotas.get()
print(response)

Response

// Response type
Promise<QuotaResponse>

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