v1

latestOpenAPI 3.1.0raw.githubusercontent.com2025-04-25361217.6 KB
Earnings

Get Earnings Call Transcripts

Fetches the earnings call transcripts for a given company stock symbol, optionally filtered by year or quarter.

get/earnings/transcripts/{symbol}

Path parameters

symbolstring required

The stock symbol of the company (e.g., AAPL).

Query parameters

yearinteger

Filter transcripts by a specific year.

quarter1 | 2 | 3 | 4

Filter transcripts by a specific quarter (1, 2, 3, or 4). Requires 'year' to be specified.

Response

Successful response with an array of earnings call transcripts.

symbolstring
quarterinteger
yearinteger
datestring date-time
contentstring

The full content of the earnings call transcript.

Example response

[
  {
    "symbol": "AAPL",
    "quarter": 2,
    "year": 2024,
    "date": "2024-05-02 21:00:00",
    "content": "Operator: Good day, and welcome to the Apple Q2 2024 Earnings Conference Call... Tim Cook: Thanks, Operator. Good afternoon, everyone, and thanks for joining us..."
  }
]