Skip to main content
GET
/
network
/
connectors
curl "https://api.clustr-ai.com/api/public/network/connectors?connector_tag=Employee" \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "success": true,
  "data": {
    "connectors": [...],
    "total": 42,
    "page": 1,
    "page_size": 25,
    "has_more": true
  }
}
List connectors (people) in your network. Connectors are the people you’ve imported whose LinkedIn connections are analyzed for referral opportunities.

Query Parameters

Search by connector name (partial match)
connector_tag
string
Filter by connector tag (e.g. Employee, Friend)
page
integer
default:"1"
page_size
integer
default:"25"
curl "https://api.clustr-ai.com/api/public/network/connectors?connector_tag=Employee" \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "success": true,
  "data": {
    "connectors": [...],
    "total": 42,
    "page": 1,
    "page_size": 25,
    "has_more": true
  }
}