# People associated with a company `GET` `https://api.unusualwhales.com/api/politics/fec/company/{ticker}/people` The people around a public company: candidates funded by its PAC and employees (with totals), politicians who traded the stock, and company insiders. This is an enterprise only endpoint. Contact dev@unusualwhales.com for details about accessing this data. ## Authentication ``` Authorization: Bearer YOUR_API_KEY ``` ## Path Parameters | Name | Type | Required | Description | |------|------|----------|-------------| | `ticker` | string | Yes | Company ticker. | ## Query Parameters | Name | Type | Required | Description | |------|------|----------|-------------| | `cycle` | integer | No | Two-year election cycle, e.g. 2026. Defaults to the current cycle. | ## Example ### curl ```bash curl -X GET "https://api.unusualwhales.com/api/politics/fec/company/{ticker}/people" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Accept: application/json" ``` ### Python ```python import http.client conn = http.client.HTTPSConnection("api.unusualwhales.com") headers = {"Authorization": "Bearer YOUR_API_KEY", "Accept": "application/json"} conn.request("GET", "/api/politics/fec/company/{ticker}/people", headers=headers) response = conn.getresponse() print(response.read().decode("utf-8")) ``` ## Response Example ```json { "candidates_funded": [ { "candidate_id": 18342, "employee_total_estimated": "0", "name": "DOE, JANE A.", "office": "house", "pac_total": "12500.00", "party": "REP", "politician_id": "1ccb3a38-6243-4c2f-bbcb-5986db785122", "politician_slug": "jane-doe", "state": "MI", "total": "12500.00" } ], "company_name": "HOME DEPOT INC", "cycle": 2026, "insiders": [ { "insider_id": 10343, "is_person": true, "name": "DECKER EDWARD P", "slug": "decker-edward-p" } ], "politician_traders": [ { "chamber": "house", "last_filing_date": "2026-07-18", "name": "John Smith", "party": "Democrat", "politician_id": "8b1f6c1e-93cf-4f52-a2b0-06c83f11d1a1", "slug": "john-smith", "trade_count": 14 } ], "ticker": "HD" } ```