Skip to main content
The usage endpoint returns your organization’s current event quota consumption for the ongoing billing month. You can use it to build internal dashboards, trigger alerts before you hit your plan limit, or verify that your integration is sending the expected volume of events. The response always reflects live data — the count updates as new events arrive.

Authentication

This endpoint requires an active session. Requests without a valid session cookie return 401 Unauthorized.

Get Usage

Retrieve the current quota consumption for your organization, broken down by event severity level.
This endpoint requires no path or query parameters — Argus derives your organization from the authenticated session.

Example Request

Example Response

Response Fields

data.plan
string
Your organization’s current plan: FREE or PRO.
data.used
integer
The total number of events your organization has ingested in the current billing month, across all projects.
data.limit
integer
The maximum number of events allowed this month. Plan limits are:
PlanMonthly event limit
FREE10,000
PRO500,000
data.month
string
The current billing month in YYYY-MM format, e.g. "2024-07". Counts reset at the start of each calendar month (UTC).
data.breakdown
object
A breakdown of consumed events by severity group, aggregated across all projects in your organization.
FieldIncluded levelsDescription
errorsERROR + FATALAll error and fatal-level events
warningsWARNINGWarning-level events
infoINFO + DEBUGInformational and debug-level events
The sum of errors + warnings + info equals used.

Response Codes

StatusMeaning
200Request succeeded.
401Not authenticated — no valid session.
404Your account is not a member of any organization.