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

Retrieve details about a specific organization.

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

### Path Parameters

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

### Response

| Parameter | Type   | Description               |
| :-------- | :----- | :------------------------ |
| `org`     | object | The organization details. |

### Example

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

  ```json Response theme={null}
  {
    "org": {
      "id": "org_123456",
      "alias": "acme-corp",
      "name": "Acme Corp",
      "role": "admin"
    }
  }
  ```
</CodeGroup>
