Skip to main content
Retrieve the usage limits and quotas assigned to a specific user.

GET /users/:id/limits

Path Parameters

ParameterTypeRequiredDescription
idstringYesThe unique ID or alias of the user.

Response

ParameterTypeDescription
limitsobjectHierarchical object containing limit values and usage.

Example

curl -X GET https://api.blobhub.io/v1/users/user_123/limits
{
  "limits": {
    "orgs_per_user": {
      "value": 10,
      "usage": 2
    }
  }
}

Identifier

The id parameter accepts a UUID, alias, or me.

Permissions

Only the user themselves can view their limits. Requests targeting a different user return 403 Forbidden.