puter.auth.getMonthlyUsage()

Websites Puter Apps Node.js Workers

Get the user's current monthly resource usage in the Puter ecosystem.

Usage data is scoped to the calling app only.

Syntax

puter.auth.getMonthlyUsage()

Parameters

None

Return value

A Promise that resolves to a MonthlyUsage object containing the user's monthly usage information.

Example

<html>
  <body>
    <script src="https://js.puter.com/v2/"></script>
    <script>
      puter.auth.getMonthlyUsage().then(function (usage) {
        puter.print(`<pre>${JSON.stringify(usage, null, 2)}</pre>`);
      });
    </script>
  </body>
</html>