Skip to main content
List all revisions for a specific blob.

GET /blobs/:org_id/:blob_id/revisions

Path Parameters

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

Response

ParameterTypeDescription
revisionsarrayList of revision objects.

Example

curl -X GET https://api.blobhub.io/v1/blobs/org_123/blob_789/revisions
{
  "revisions": [
    {
      "id": "rev_001",
      "parent_id": null,
      "blob_id": "blob_789",
      "status": "ready"
    }
  ]
}