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

Retrieve usage limits and quotas for a specific blob.

## **GET** `/blobs/:org_id/:blob_id/limits`

### Path Parameters

| Parameter | Type   | Required | Description                        |
| :-------- | :----- | :------- | :--------------------------------- |
| `org_id`  | string | Yes      | The unique ID of the organization. |
| `blob_id` | string | Yes      | The unique ID of the blob.         |

### 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/blobs/org_123/blob_789/limits
  ```

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