> ## Documentation Index
> Fetch the complete documentation index at: https://docs.hiloop.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Track quota usage

> Read the product limits configured for your org.

The usage snapshot reports every configured product quota for the org resolved from your
credential.

<CodeGroup>
  ```sh CLI theme={null}
  hiloop api /v1/usage/snapshot
  ```

  ```typescript TypeScript theme={null}
  import { usageServiceGetUsageSnapshot } from "@hiloopai/sdk";

  const { data } = await usageServiceGetUsageSnapshot({ client });
  console.log(data?.snapshot?.limits);
  ```

  ```python Python theme={null}
  from hiloop.api.usage_service import usage_service_get_usage_snapshot

  response = usage_service_get_usage_snapshot.sync(client=client)
  print(response.snapshot.limits)
  ```
</CodeGroup>

Each limit has a stable `metric`, its configured `limit`, and an optional `current` value.
Occupancy-based quotas include `current`; rate limits do not.

| Metric            | Meaning                                                |
| ----------------- | ------------------------------------------------------ |
| `runs.start.rate` | Run starts allowed per minute.                         |
| `volumes.bytes`   | Committed volume bytes and the configured storage cap. |

When a request is rate-limited, wait for the response's `Retry-After` delay before retrying. A
storage quota remains full until data is removed or the limit is raised.
