# Company Dividends `GET` `https://api.unusualwhales.com/api/companies/{ticker}/dividends` **Requires Advanced+ tier (Advanced, Enterprise, or Enterprise + Kafka).** Historical dividend events for a ticker (ex-date, declaration, record, payment, amount). ## Authentication ``` Authorization: Bearer YOUR_API_KEY ``` ## Path Parameters | Name | Type | Required | Description | |------|------|----------|-------------| | `ticker` | string | Yes | | ## Response (200) | Field | Type | Description | |-------|------|-------------| | `dividends` | array[Dividend Event] | | | `ticker` | string | | ## Example ### curl ```bash curl -X GET "https://api.unusualwhales.com/api/companies/{ticker}/dividends" \ -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/companies/{ticker}/dividends", headers=headers) response = conn.getresponse() print(response.read().decode("utf-8")) ``` ## Response Example ```json { "data": { "dividends": [ null ], "ticker": "string" } } ```