---
title: "Stats Organization"
method: GET
path: "/v2/orgs/{org_id}/stats"
tags: ["Organizations"]
---

# Stats Organization

`GET /v2/orgs/{org_id}/stats`

## Path parameters

- `org_id` string, required — Either the unique id of the organization, or the URL-friendly key of the organization (i.e: the "slug").

## Response `200`

Successful Response

- OrganizationStats
  - `key` string, required — A URL-friendly name of the organization (i.e: slug). You will be able to query later using this key instead of the id (UUID) of the organization.
  - `id` string, uuid, required — Unique id of the organization
  - `is_enterprise` boolean, required — Is this an enterprise account?
  - `usage_limits` UsageLimits
    - `mau` integer — Monthly active users limit. Default for trial is 5000.
    - `tenants` integer — Number of tenants limit. Default for trial is 50.
    - `billing_tier` 'free' | 'startup' | 'pro' | 'enterprise' | 'internal' | 'trial' — An enumeration.
  - `created_at` string, date-time, required — Date and time when the organization was created (ISO_8601 format).
  - `updated_at` string, date-time, required — Date and time when the organization was last updated/modified (ISO_8601 format).
  - `name` string, required — The name of the organization, usually it's your company's name.
  - `settings` object — the settings for this project
  - `stats` OrganizationStatistics, required
    - `projects` integer, required
    - `environments` integer, required
    - `users` integer, required
  - `historical_usage` HistoricalUsage, required
    - `current_month` MonthlyUsage
      - `mau` integer
      - `tenants` integer
      - `monthly_tenants` string[]
      - `month` integer
      - `year` integer
    - `previous_month` MonthlyUsage
      - `mau` integer
      - `tenants` integer
      - `monthly_tenants` string[]
      - `month` integer
      - `year` integer
    - `two_months_ago` MonthlyUsage
      - `mau` integer
      - `tenants` integer
      - `monthly_tenants` string[]
      - `month` integer
      - `year` integer

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/permit/apis/permit-io-api.md) · [All operations](https://skmtc.net/permit/apis/permit-io-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/permit/permit-io-api/versions/f3391dcb29a4/schema)
