---
title: "Create company"
method: POST
path: "/v2/api/crm/companies"
tags: ["CRM"]
---

# Create company

`POST /v2/api/crm/companies`

Creates a new company in your CRM.

## Request body

- CreateCompanyRequest — Request body for creating a company
  - `name` string, required — Company name
  - `website` string, nullable — Company website URL
  - `industry` string, nullable — Industry sector

## Response `201`

Company created

- object
  - `data` CrmCompany — A company in the CRM
    - `id` string — Unique company identifier
    - `name` string — Company name
    - `website` string, nullable — Company website URL
    - `industry` string, nullable — Industry sector
    - `person_count` integer — Number of people linked to this company
    - `interactions` integer — Total number of interactions across all people in this company
    - `last_activity_at` string, date-time, nullable — Timestamp of the last activity
    - `created_at` string, date-time — When the company was created
    - `updated_at` string, date-time — When the company was last updated

## Other responses

- `401` — Invalid or missing API key
- `422` — Invalid request parameters
- `429` — Rate limit exceeded

---

[API](https://skmtc.dev/withallo/apis/allo-api.md) · [All operations](https://skmtc.dev/withallo/apis/allo-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/withallo/allo-api/revisions/9aab4db82933/schema)
