# Companies in Sector `GET` `https://api.unusualwhales.com/api/stock/{sector}/tickers` Returns a list of tickers which are in the given sector. ## Authentication ``` Authorization: Bearer YOUR_API_KEY ``` ## Path Parameters | Name | Type | Required | Description | |------|------|----------|-------------| | `sector` | Sector | Yes | A financial sector. | ## Example ### curl ```bash curl -X GET "https://api.unusualwhales.com/api/stock/{sector}/tickers" \ -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/stock/{sector}/tickers", headers=headers) response = conn.getresponse() print(response.read().decode("utf-8")) ``` ## Response Example ```json { "data": [ "AMD", "INTC", "NVDA" ] } ```