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

Retrieve details about a specific blob.

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

### Path Parameters

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

### Response

| Parameter | Type   | Description       |
| :-------- | :----- | :---------------- |
| `blob`    | object | The blob details. |

### Example

<CodeGroup>
  ```bash Request theme={null}
  curl -X GET https://api.blobhub.io/v1/blobs/org_123/my-model
  ```

  ```json Response theme={null}
  {
    "blob": {
      "id": "blob_789",
      "org_id": "org_123",
      "name": "my-model",
      "latest_revision_id": "rev_abc"
    }
  }
  ```
</CodeGroup>
