earningsCalendar

suspend fun earningsCalendar(symbol: String, limit: Int = 12, offset: Int = 0): EarningsCalendar(source)

Retrieves the earnings calendar for a specific company.

This method provides upcoming and historical earnings announcement dates, earnings per share (EPS) estimates, and actual results.

Return

Earnings calendar data with announcement dates and EPS information

Parameters

symbol

The ticker symbol (e.g., "AAPL")

limit

Maximum number of earnings records to retrieve (default: 12)

offset

Number of records to skip for pagination (default: 0)

Throws

if the symbol is invalid or the request fails

Samples