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

# Get User Limits

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

## **GET** `/users/:id/limits`

### Path Parameters

| Parameter | Type   | Required | Description                         |
| :-------- | :----- | :------- | :---------------------------------- |
| `id`      | string | Yes      | The unique ID or alias of the user. |

### Response

| Parameter | Type   | Description                                            |
| :-------- | :----- | :----------------------------------------------------- |
| `limits`  | object | Hierarchical object containing limit values and usage. |

### Example

<CodeGroup>
  ```bash Request theme={null}
  curl -X GET https://api.blobhub.io/v1/users/user_123/limits
  ```

  ```json Response theme={null}
  {
    "limits": {
      "orgs_per_user": {
        "value": 10,
        "usage": 2
      }
    }
  }
  ```
</CodeGroup>

### Identifier

The `id` parameter accepts a UUID, alias, or [`me`](/rest-api/conventions#the-me-alias).

### Permissions

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