Skip to main content
GET
/
network
/
search
/
opportunities
/
by-company
curl "https://api.clustr-ai.com/api/public/network/search/opportunities/by-company?domains=acme.com&seniority_levels=high" \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "success": true,
  "data": {
    "results": [
      {
        "client": {
          "name": "John Doe",
          "job_title": "Sales Director",
          "company_name": "Your Corp"
        },
        "opportunities": [
          {
            "opportunity_id": "550e8400-...",
            "prospect": {
              "name": "Jane Smith",
              "job_title": "VP Engineering",
              "company_name": "Acme Corp"
            },
            "company": {
              "name": "Acme Corp",
              "domain": "acme.com",
              "industry": "Technology"
            },
            "relationship": {
              "confidence_score": 85.5,
              "total_overlap_months": 24
            },
            "is_target_company": true
          }
        ]
      }
    ],
    "total": 42,
    "page": 1,
    "page_size": 25,
    "has_more": true
  }
}
Search opportunities filtered by company domain, LinkedIn URL, or other criteria.

Query Parameters

domains
string
Comma-separated domains — acme.com,globex.com
linkedin_urls
string
Comma-separated company LinkedIn URLs
numeric_ids
string
Comma-separated LinkedIn numeric IDs
seniority_levels
string
high, mid, low
industries
string
Comma-separated industry names
countries
string
Comma-separated country names
confidence_ranges
string
e.g. 80-100,60-79
employee_ranges
string
e.g. 51-200,501-1000
full_history
boolean
default:"false"
Include engagement history
page
integer
default:"1"
page_size
integer
default:"25"
curl "https://api.clustr-ai.com/api/public/network/search/opportunities/by-company?domains=acme.com&seniority_levels=high" \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "success": true,
  "data": {
    "results": [
      {
        "client": {
          "name": "John Doe",
          "job_title": "Sales Director",
          "company_name": "Your Corp"
        },
        "opportunities": [
          {
            "opportunity_id": "550e8400-...",
            "prospect": {
              "name": "Jane Smith",
              "job_title": "VP Engineering",
              "company_name": "Acme Corp"
            },
            "company": {
              "name": "Acme Corp",
              "domain": "acme.com",
              "industry": "Technology"
            },
            "relationship": {
              "confidence_score": 85.5,
              "total_overlap_months": 24
            },
            "is_target_company": true
          }
        ]
      }
    ],
    "total": 42,
    "page": 1,
    "page_size": 25,
    "has_more": true
  }
}