You can use the account_db.information_schema.quotas view to return account-level quota limits and usage. The view is available in the special account_db database and contains one row per quota.
SELECT
  *
FROM
  account_db.information_schema.quotas;

Columns in account_db.information_schema.quotas

Each row has the following columns with information about each quota.
Column NameData TypeDescription
nameTEXTThe name of the quota.
unitsTEXTThe measurement units for the quota values.
limitBIGINTThe configured maximum allowed for the quota.
usageBIGINTThe current usage that counts toward the quota.

Sample result

name,units,limit,usage
'LLM_TOKEN_BUDGET',tokens,10000,3500