Search opportunities with optional filters. All parameters are optional — call with no filters to list all opportunities, or combine filters to narrow results.
To search for a specific contact’s opportunities, use the /by-contact variant: GET /network/search/opportunities/by-contact?linkedin_public_id=john-doe.
Query Parameters
Company filters
Comma-separated company domains (e.g. acme.com,stripe.com)
Comma-separated company LinkedIn URLs
Comma-separated LinkedIn numeric IDs
Comma-separated LinkedIn vanity names
Client/prospect filters
Comma-separated client (connector) names
Comma-separated client LinkedIn URLs
client_public_identifiers
Comma-separated client LinkedIn public identifiers
Comma-separated client company names
Comma-separated prospect names
Comma-separated prospect LinkedIn URLs
Comma-separated prospect job titles
Comma-separated prospect company names
Comma-separated owner emails
Scoring and engagement filters
Comma-separated industry names
Comma-separated country names
Comma-separated employee count ranges (e.g. 51-200,501-1000)
Comma-separated revenue ranges
Comma-separated opportunity statuses
Comma-separated engagement types
Comma-separated CRM statuses
Date and behavior filters
Filter by creation date (YYYY-MM-DD)
Filter by creation date (YYYY-MM-DD)
Exclude prospects at the same company as the client
Include opportunities with no engagement
Include full engagement history
Bypass cache and fetch fresh results
curl "https://api.clustr-ai.com/api/public/network/search/opportunities?domains=acme.com&confidence_ranges=80-100&page_size=10" \
-H "Authorization: Bearer YOUR_API_KEY"
{
"success": true,
"data": {
"results": [
{
"client": { "name": "John Doe", "job_title": "Sales Director" },
"opportunities": [
{
"opportunity_id": "opp_abc123",
"prospect": { "name": "Jane Smith", "job_title": "CTO" },
"relationship": { "confidence_score": 92, "total_overlap_months": 36 },
"is_target_company": true
}
]
}
],
"total": 42,
"page": 1,
"page_size": 25,
"has_more": true
}
}