> ## Documentation Index
> Fetch the complete documentation index at: https://docs.sequenzy.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Create Company

> Create a company workspace

Create a company workspace and queue brand processing for its website.

## Request

<ParamField body="domain" type="string" required>
  Company website domain or URL.
</ParamField>

<ParamField body="name" type="string">
  Company display name. If omitted, Sequenzy derives it from the domain.
</ParamField>

```bash theme={null}
curl -X POST "https://api.sequenzy.com/api/v1/companies" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"domain": "acme.com", "name": "Acme"}'
```

## Responses

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "company": {
      "id": "company_abc123",
      "name": "Acme",
      "status": "processing",
      "websiteUrl": "acme.com"
    },
    "message": "Company created. Processing your website to extract brand information. This typically takes 30-60 seconds."
  }
  ```

  ```json 401 theme={null}
  {
    "success": false,
    "error": "Unauthorized"
  }
  ```

  ```json 500 theme={null}
  {
    "success": false,
    "error": "Failed to create company"
  }
  ```
</ResponseExample>
