Skip to main content
GET
/
projects
/
{projectId}
/
quotas
Get quotas for all tenants within a project
curl --request GET \
  --url https://api.console.corti.app/functions/v1/public/projects/{projectId}/quotas \
  --header 'Authorization: Bearer <token>'
{
  "quotas": [
    {
      "region": "eu",
      "tenantName": "base",
      "users": {
        "quota": 123,
        "usage": 123,
        "remaining": 123
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

JWT access token obtained from the /auth/token endpoint.

This Admin API is separate from the Corti API used for speech recognition, text generation, and agentic workflows. Authentication and scope for the Admin API uses email-and-password to obtain a bearer token via /auth/token. This token is only used for API administration.

Path Parameters

projectId
string
required

Unique identifier of your project in the Corti API Console.

To find it, open your project at console.corti.app, go to Settings, and copy the value from the Project ID field.

Example:

"consoleproject"

Response

Returns quota limits and current usage for all available tenants in the project. Only tenants that are reachable at the time of the request are included in the response. Usage reflects the number of enabled users. A value of -1 indicates an unlimited resource.

quotas
object[]
required