Get Company Lists
affinity_get_company_listsRetrieve all lists containing a specific company, such as deal pipelines or opportunity stages, to understand where it is being tracked.
Instructions
Get all lists where a specific company appears.
Returns list metadata for each list containing this company. Useful for discovering which deal pipelines track a specific company.
Parameters:
companyId: Company ID (required) - get from affinity_search_companies or affinity_get_company
cursor: Pagination cursor (optional)
limit: Items per page (default 100, max 100)
Returns (JSON): { "lists": [ { "id": number, "name": string, // e.g., "SVV Deal Funnel" "type": string, // "company", "person", or "opportunity" "isPublic": boolean, "creatorId": number, "ownerId": number } ], "count": number, "hasMore": boolean, "nextCursor": string | null }
Note: Returns empty array if company not on any lists (very common).
Use Cases:
"Which deal pipelines is this company in?"
"Find all lists tracking this portfolio company"
"Check if company is already being tracked"
Next Steps:
Use affinity_get_company_list_entries to see full field data for each list
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| companyId | Yes | Company ID (numeric). Get from affinity_search_companies or affinity_get_company. | |
| cursor | No | Pagination cursor from previous response | |
| limit | No | Items per page (default 100, max 100) | |
| responseFormat | No | Output format: "json" or "markdown". Default: "json" |