Companies represent organizations in your CRM — typically the employers, customers, or accounts that your contacts belong to. Each company is owned by a specific agent (Documentation Index
Fetch the complete documentation index at: https://docs.clarky.ai/llms.txt
Use this file to discover all available pages before exploring further.
bot_id) and inherits the workspace from your API key.
The Company object
Unique company identifier.
The agent that owns this company.
Company name.
Primary domain (e.g.
acme.com).Free-form size band (e.g.
"50-200").Array of
{ email, is_primary } objects.Array of
{ phone_number, is_primary } objects.Sum of
deal_value across all contacts linked to this company.ISO 8601 timestamp of the most recent activity on a related contact.
ISO 8601 timestamp.
ISO 8601 timestamp.
List companies
GET /api/v1/companiesQuery parameters
| Param | Type | Description |
|---|---|---|
search | string | Match against name, domain, or industry |
tags | string | Comma-separated list of tags |
industry | string | Exact-match industry filter |
domain | string | Exact-match domain filter |
bot_id | string | Restrict to companies owned by a specific agent |
page | integer | See Pagination |
page_size | integer | See Pagination |
Example
Get a company
GET /api/v1/companies/{id}Example
Create a company
POST /api/v1/companieswrite scope.
Body fields
| Field | Type | Required | Description |
|---|---|---|---|
bot_id | string | Yes | Owning agent |
name | string | Yes | Company name |
domain | string | No | |
website | string | No | |
industry | string | No | |
company_size | string | No | |
company_type | string | No | |
employee_count | number | No | |
annual_revenue | number | No | |
description | string | No | |
emails | array | No | Array of { email, is_primary } |
phone_numbers | array | No | Array of { phone_number, is_primary } |
tags | string[] | No | |
pipeline_stage_id | string | No | |
address_line1 | string | No | |
address_line2 | string | No | |
city | string | No | |
state | string | No | |
postal_code | string | No | |
country | string | No | |
linkedin_url | string | No | |
notes | string | No | |
custom_fields | object | No |
Example
Update a company
PATCH /api/v1/companies/{id}bot_id cannot be changed.
Example
Delete a company
DELETE /api/v1/companies/{id}204 No Content with an empty body on success.

