---
title: "Get usage and quota"
method: GET
path: "/v1/organizations/{organizationId}/usage-and-quota"
tags: ["Usage&Quota"]
---

# Get usage and quota

`GET /v1/organizations/{organizationId}/usage-and-quota`

This endpoint returns the current usage and quota information for an Organization. You can optionally filter the result by Product using the `productId` query parameter.

The response includes monthly aggregate values, detailed request statistics, and quota limits used to monitor consumption and over-limit conditions.

## Path parameters

- `organizationId` string, uuid, required

## Query parameters

- `productId` string, uuid

## Response `200`

- StatisticsV2Model — Represents the monthly usage and quota statistics for an Organization.
  - `hasConnectedApplication` boolean, required — Indicates whether the Organization has a connected application.
  - `millionRequestLimitPerMonth` integer, required — The monthly request quota limit in millions.
  - `networkTrafficGigaByteLimitPerMonth` integer, required — The monthly network traffic quota limit in gigabytes.
  - `organizationStatistics` OrganizationMonthlyStatisticV2Model[], required — The aggregated monthly statistics for the Organization.
    - `date` string, date-time, required — The date for which the aggregate statistics are reported.
    - `millionRequestCount` number, double, required — The total request volume in millions for the period.
    - `responseMegaBytes` number, double, required — The total network traffic in megabytes for the period.
    - `overLimit` boolean, required — Indicates whether the request quota was exceeded.
    - `overNetworkTrafficLimit` boolean, required — Indicates whether the network traffic quota was exceeded.
    - `millionRequestLimitPerMonth` integer, required — The monthly request quota limit in millions.
    - `networkTrafficGigaByteLimitPerMonth` integer, required — The monthly network traffic quota limit in gigabytes.
    - `publicApiCallCount` integer, required — The number of Public API calls recorded for the period.
  - `productStatistics` ProductMonthlyStatisticV2Model[], required — The aggregated monthly statistics for Products within the scope.
    - `productId` string, uuid, required — The identifier of the Product associated with the statistics.
    - `date` string, date-time, required — The date for which the statistics are reported.
    - `millionRequestCount` number, double, required — The total request volume in millions for the Product.
    - `responseMegaBytes` number, double, required — The total network traffic in megabytes for the Product.
  - `detailedStatistics` DetailedStatisticV2Model[], required — The detailed per-day, per-Config, per-Environment usage statistics.
    - `date` string, date-time, required — The date for which the usage was recorded.
    - `productId` string, uuid, required — The identifier of the Product associated with the usage.
    - `productName` string, required — The name of the Product associated with the usage.
    - `configId` string, uuid, required — The identifier of the Config associated with the usage.
    - `configName` string, required — The name of the Config associated with the usage.
    - `environmentId` string, uuid, nullable, required — The identifier of the Environment associated with the usage, if available.
    - `environmentName` string, required — The name of the Environment associated with the usage.
    - `sdk` string, required — The SDK type that generated the usage.
    - `sdkKey` string, required — The SDK key used for the request.
    - `requestCount` integer, required — The number of requests recorded for the entry.
    - `responseKiloBytes` number, double, required — The total response payload size in kilobytes for the entry.

## Other responses

- `400` — Bad request.
- `404` — Not found.
- `429` — Too many requests. In case of the request rate exceeds the rate limits.

---

[API](https://skmtc.net/configcat/apis/configcat-public-management-api.md) · [All operations](https://skmtc.net/configcat/apis/configcat-public-management-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/configcat/configcat-public-management-api/revisions/88fd971944d7/schema)
