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

# List Blobs

List all blobs present in an organization.

## **GET** `/orgs/:id/blobs`

### Path Parameters

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

### Response

| Parameter | Type  | Description           |
| :-------- | :---- | :-------------------- |
| `blobs`   | array | List of blob objects. |

### Example

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

  ```json Response theme={null}
  {
    "blobs": [
      {
        "id": "blob_789",
        "alias": "my-model",
        "org_id": "org_123456"
      }
    ]
  }
  ```
</CodeGroup>
