Skip to main content
Retrieve usage limits and quotas for a specific blob.

GET /blobs/:org_id/:blob_id/limits

Path Parameters

ParameterTypeRequiredDescription
org_idstringYesThe unique ID of the organization.
blob_idstringYesThe unique ID of the blob.

Response

ParameterTypeDescription
limitsobjectHierarchical object containing limit values and usage.

Example

curl -X GET https://api.blobhub.io/v1/blobs/org_123/blob_789/limits
{
  "limits": {
    "revisions_per_blob": {
      "value": 50,
      "usage": 10
    }
  }
}