Skip to main content
GET
/
connector-tags
curl "https://api.clustr-ai.com/api/public/connector-tags" \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "success": true,
  "data": {
    "tags": [
      { "id": "a1b2...", "name": "Investor", "color": "#3B82F6", "position": 0 },
      { "id": "c3d4...", "name": "Employee", "color": "#22C55E", "position": 1 }
    ]
  }
}
List all connector tags. Tags label connectors (the people in your network), not opportunities — an opportunity inherits the tag of its connector.

Response Fields

tags
array
Array of tag objects, ordered by position.
tags[].id
string
Tag UUID — pass this in Set Connector Tags.
tags[].name
string
Display name (e.g. “Investor”, “Employee”, “Friend”).
tags[].color
string
Hex color code for UI display (e.g. #3B82F6).
tags[].position
integer
Display order (0-based).
curl "https://api.clustr-ai.com/api/public/connector-tags" \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "success": true,
  "data": {
    "tags": [
      { "id": "a1b2...", "name": "Investor", "color": "#3B82F6", "position": 0 },
      { "id": "c3d4...", "name": "Employee", "color": "#22C55E", "position": 1 }
    ]
  }
}