> ## 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 Organization Limits

Retrieve usage limits and quotas for an organization.

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

### Path Parameters

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

### 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/orgs/acme-corp/limits
  ```

  ```json Response theme={null}
  {
    "limits": {
      "blobs_per_org": {
        "value": 100,
        "usage": 15
      }
    }
  }
  ```
</CodeGroup>
