> ## 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.

# List ICPs

> List Ideal Customer Profiles for your tenant

List all Ideal Customer Profiles (ICPs). ICPs define target company characteristics: industries, revenue ranges, employee counts, and countries.

<RequestExample>
  ```bash cURL theme={null}
  curl "https://api.clustr-ai.com/api/public/company-icp" \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "data": {
      "company_icps": [
        {
          "id": "550e8400-...",
          "title": "Enterprise SaaS",
          "linkedin_industries": ["IT", "Computer Software"],
          "revenue": ["$10M-$50M"],
          "employees": ["201-500"],
          "countries": ["US", "UK"],
          "created_at": "2025-03-15T10:00:00Z"
        }
      ],
      "count": 1
    }
  }
  ```
</ResponseExample>
