Skip to main content
Retrieve details about a specific blob.

GET /blobs/:org_id/:blob_id

Path Parameters

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

Response

ParameterTypeDescription
blobobjectThe blob details.

Example

curl -X GET https://api.blobhub.io/v1/blobs/org_123/my-model
{
  "blob": {
    "id": "blob_789",
    "org_id": "org_123",
    "name": "my-model",
    "latest_revision_id": "rev_abc"
  }
}