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

List all organizations associated with a specific user.

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

### Path Parameters

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

### Response

| Parameter       | Type  | Description                   |
| :-------------- | :---- | :---------------------------- |
| `organizations` | array | List of organization objects. |

### Example

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

  ```json Response theme={null}
  {
    "organizations": [
      {
        "id": "org_456",
        "alias": "acme-corp",
        "name": "Acme Corp"
      }
    ]
  }
  ```
</CodeGroup>

### Identifier

The `id` parameter accepts a UUID, alias, or [`me`](/rest-api/conventions#the-me-alias).

### Permissions

| Caller | Access                                     |
| :----- | :----------------------------------------- |
| Self   | All organizations the user belongs to.     |
| Other  | Only organizations with public visibility. |
