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

# Overview

> Manage companies in your Allo CRM

The Companies API lets you create, read, update, and search your team's companies.

## Scopes

| Scope       | Access                      |
| ----------- | --------------------------- |
| `CRM_READ`  | Get and search companies    |
| `CRM_WRITE` | Create and update companies |

## Associations

* **Company → People**: A company can have multiple people associated with it
* **Company → Deals**: A company can have deals linked to it

## Search

Companies support search via `POST /v2/api/crm/companies/search` with named filters.

Available filters: `name`, `website`, `industry`.

## Endpoints

<CardGroup cols={1}>
  <Card title="Get company" href="/en/v2/api-reference/crm/get-company">Get a company by ID</Card>
  <Card title="Create company" href="/en/v2/api-reference/crm/create-company">Create a new company</Card>
  <Card title="Update company" href="/en/v2/api-reference/crm/update-company">Update a company</Card>
  <Card title="Search companies" href="/en/v2/api-reference/crm/search-companies">Search companies with filters</Card>
</CardGroup>
