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

# Create Organization

Create a new organization.

## **POST** `/orgs`

### Request Body

| Parameter    | Type   | Required | Description                                |
| :----------- | :----- | :------- | :----------------------------------------- |
| `alias`      | string | Yes      | Unique alias for the organization.         |
| `visibility` | string | Yes      | Visibility setting: `public` or `private`. |

### Response

| Parameter | Type   | Description                       |
| :-------- | :----- | :-------------------------------- |
| `org_id`  | string | The unique ID of the created org. |

### Example

<CodeGroup>
  ```json Request theme={null}
  {
    "alias": "acme-corp",
    "visibility": "public"
  }
  ```

  ```json Response theme={null}
  {
    "org_id": "org_123456"
  }
  ```
</CodeGroup>
