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

# Create ICP

> Create a new Ideal Customer Profile

Create a new ICP with target company characteristics for opportunity prioritization.

## Body

<ParamField body="title" type="string" required>
  ICP name (e.g. "Enterprise SaaS", "Mid-Market Finance")
</ParamField>

<ParamField body="linkedin_industries" type="string[]">
  Target industries (e.g. `["IT", "Computer Software"]`)
</ParamField>

<ParamField body="revenue" type="string[]">
  Target revenue ranges (e.g. `["$10M-$50M", "$50M-$100M"]`)
</ParamField>

<ParamField body="employees" type="string[]">
  Target employee count ranges (e.g. `["50-200", "201-500"]`)
</ParamField>

<ParamField body="countries" type="string[]">
  Target countries (e.g. `["US", "UK", "France"]`)
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X POST "https://api.clustr-ai.com/api/public/company-icp" \
    -H "Authorization: Bearer YOUR_API_KEY" \
    -H "Content-Type: application/json" \
    -d '{
      "title": "Enterprise SaaS",
      "linkedin_industries": ["IT", "Computer Software"],
      "employees": ["201-500", "501-1000"],
      "countries": ["US"]
    }'
  ```
</RequestExample>

<ResponseExample>
  ```json 201 theme={null}
  {
    "success": true,
    "data": {
      "id": "550e8400-...",
      "title": "Enterprise SaaS",
      "linkedin_industries": ["IT", "Computer Software"],
      "employees": ["201-500", "501-1000"],
      "countries": ["US"],
      "created_at": "2025-03-15T10:00:00Z"
    }
  }
  ```
</ResponseExample>
