Skip to main content
GET
/
companies
curl "https://api.clustr-ai.com/api/public/companies?search=Acme" \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "success": true,
  "data": {
    "companies": [
      {
        "linkedin_numeric_id": "12345678",
        "name": "Acme Corp",
        "industry": "Technology",
        "size": "501-1000",
        "domain": "acme.com"
      }
    ],
    "total": 1
  }
}
Search companies by name, domain, or LinkedIn URL. At least one parameter is required.

Query Parameters

Search by company name (partial match)
domain
string
Lookup by company domain (e.g. acme.com)
linkedin_url
string
Lookup by company LinkedIn URL
page_size
integer
default:"25"
Results per page (max: 100)
curl "https://api.clustr-ai.com/api/public/companies?search=Acme" \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "success": true,
  "data": {
    "companies": [
      {
        "linkedin_numeric_id": "12345678",
        "name": "Acme Corp",
        "industry": "Technology",
        "size": "501-1000",
        "domain": "acme.com"
      }
    ],
    "total": 1
  }
}