---
title: "List Quotas"
method: GET
path: "/accounts/{name}/quotas"
tags: ["Accounts"]
---

# List Quotas

`GET /accounts/{name}/quotas`

## Path parameters

- `name` string, required

## Query parameters

- `type` QuotaType[] — The types of quotas to get
- `exhausted` boolean — Whether to return only quotas which are exhausted
- `enforced` boolean — Whether to return only quotas which are enforced
- `page` integer — Page number starting from 1
- `per-page` integer — Number of items per page

## Response `200`

Retrieved

- QuotaList — A list response from a pagination request
  - `page` integer, required — The current page the pagination request is on
  - `per_page` integer, required — The number of pages per pagination request
  - `next_page` integer — The next page, if this on is not the last
  - `page_count` integer, required — The total number of pages
  - `total_count` integer, required — The total number of resources matching the list request
  - `resources` Quota[], required
    - `id` string, uuid — The unique ID for this Quota
    - `type` 'storage' | 'compute_hours' | 'parallel_workflow_containers' | 'runs_per_study' | 'private_repositories' | 'private_projects' | 'teams' | 'members' | 'cpu_limit' | 'memory_limit' | 'rhino_plugin_license' | 'revit_plugin_license' | 'application_cpu' | 'application_memory', required — The type of comsumption-limited resource to which the quota refers.
    - `period_start` string, date-time — The start of the quota usage tracking period
    - `limit` number — The maximum amount of a resource the account can consume
    - `usage` number — The current amount of a resource allocated to the account linked to the subscription
    - `resets` boolean — Whether consumption is reset to 0 every billing period
    - `enforced` boolean — Whether the limit triggers a blocking response from the server
    - `exceeded` boolean — Whether the resource usage is greater than or equal to the limit
    - `owner` AccountPublic, required
      - `id` string, required
      - `account_type` string, required
      - `name` string, required
      - `display_name` string
      - `description` string
      - `picture_url` string — https://robohash.org/ladybugbot
    - `display_name` string — The human-readable name
    - `description` string — The description
    - `unit` string — The unit in which the usage and limit are measured

## Other responses

- `400` — Invalid request
- `403` — Access forbidden
- `422` — Validation Error
- `500` — Server error

---

[API](https://skmtc.net/pollination/apis/pollination-server.md) · [All operations](https://skmtc.net/pollination/apis/pollination-server/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/pollination/pollination-server/revisions/c1f3c6d96b31/schema)
