# Fundamental Breakdown `GET` `https://api.unusualwhales.com/api/stock/{ticker}/fundamental-breakdown` Returns the fundamental financial data for the given ticker, including earnings per share, revenue, dividends, share counts, RSU data, and revenue breakdowns by product and geography. ## Authentication ``` Authorization: Bearer YOUR_API_KEY ``` ## Path Parameters | Name | Type | Required | Description | |------|------|----------|-------------| | `ticker` | SingleTicker | Yes | A single ticker | ## Response (200) | Field | Type | Description | |-------|------|-------------| | `annual_only` | boolean | True when every report in `general` is an annual filing. | | `general` | array[Fundamental Breakdown Report] | | | `rev_breakdown` | array[Revenue Breakdown Row] | | ## Example ### curl ```bash curl -X GET "https://api.unusualwhales.com/api/stock/{ticker}/fundamental-breakdown" \ -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/{ticker}/fundamental-breakdown", headers=headers) response = conn.getresponse() print(response.read().decode("utf-8")) ``` ## Response Example ```json { "data": { "annual_only": true, "general": [ null ], "rev_breakdown": [ null ] } } ```