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

# Get organization quotas

> Get quota limits and usage for the current organization



## OpenAPI

````yaml api-docs/archived/organizations.json get /v1/regions/global/organizations/quotas
openapi: 3.1.1
info:
  title: Organizations API
  version: 1.0.0
  description: >-
    Organizations API for the k0rdent Enterprise platform. Provides organization
    lifecycle management, project grouping, invitations, quotas, and folder
    hierarchy.
  contact:
    name: k0rdent Enterprise API Support
    email: api-support@example.com
    url: https://support.example.com
  license:
    name: Proprietary
    url: https://k0rdent.example.com/license
servers:
  - url: ''
    description: For documentation only
  - url: https://api.example.com
    description: Arc API Base URL
  - url: https://api.internal.example.com
    description: Atlas API Base URL
  - url: http://localhost:{port}
    description: Local Development
    variables:
      port:
        default: '4010'
        description: Organizations service port
security: []
paths:
  /v1/regions/global/organizations/quotas:
    get:
      tags:
        - Organization Quotas
      summary: Get organization quotas
      description: Get quota limits and usage for the current organization
      operationId: getOrgQuotas
      responses:
        '200':
          description: Organization quotas
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - true
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Quota'
components:
  schemas:
    Quota:
      type: object
      description: Resource quota configuration
      properties:
        id:
          type: string
          description: Quota identifier
        resourceType:
          type: string
          description: Resource type this quota applies to
        limit:
          type: number
          description: Maximum allowed quantity
        used:
          type: number
          description: Currently used quantity
        unit:
          type: string
          description: Unit of measurement (e.g., count, GB, vCPU)
        scope:
          type: string
          enum:
            - organization
            - project
          description: Quota scope level
        enforcementPolicy:
          type: string
          enum:
            - hard
            - soft
          default: hard
          description: Whether to hard-block or warn on quota exceed
      required:
        - id
        - resourceType
        - limit
        - used
        - unit
        - scope

````