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