# Forward Earnings Estimates `GET` `https://api.unusualwhales.com/api/companies/{ticker}/earnings-estimates` **Requires Advanced+ tier (Advanced, Enterprise, or Enterprise + Kafka).** Analyst-driven forward earnings estimates by quarter/year. ## Authentication ``` Authorization: Bearer YOUR_API_KEY ``` ## Path Parameters | Name | Type | Required | Description | |------|------|----------|-------------| | `ticker` | string | Yes | | ## Response (200) | Field | Type | Description | |-------|------|-------------| | `estimates` | array[Earnings Estimate] | | | `ticker` | string | | ## Example ### curl ```bash curl -X GET "https://api.unusualwhales.com/api/companies/{ticker}/earnings-estimates" \ -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}/earnings-estimates", headers=headers) response = conn.getresponse() print(response.read().decode("utf-8")) ``` ## Response Example ```json { "data": { "estimates": [ null ], "ticker": "string" } } ```