# Earnings Call Transcript `GET` `https://api.unusualwhales.com/api/companies/{ticker}/transcripts/{quarter}` **Requires Advanced+ tier (Advanced, Enterprise, or Enterprise + Kafka).** Full earnings-call transcript for a ticker and quarter (e.g. 2024Q1). Returns speakers, sentiment, and statements. ## Authentication ``` Authorization: Bearer YOUR_API_KEY ``` ## Path Parameters | Name | Type | Required | Description | |------|------|----------|-------------| | `ticker` | string | Yes | | | `quarter` | string | Yes | Year and quarter, e.g. "2024Q1". | ## Response (200) | Field | Type | Description | |-------|------|-------------| | `quarter` | string | | | `statements` | array[Transcript Statement] | | | `ticker` | string | | ## Example ### curl ```bash curl -X GET "https://api.unusualwhales.com/api/companies/{ticker}/transcripts/{quarter}" \ -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}/transcripts/{quarter}", headers=headers) response = conn.getresponse() print(response.read().decode("utf-8")) ``` ## Response Example ```json { "data": { "quarter": "string", "statements": [ null ], "ticker": "string" } } ```