get_earning_dates
Retrieve upcoming and historical earnings dates for a specific stock symbol directly from Yahoo Finance. Specify the stock symbol and adjust the limit to control the number of dates returned.
Instructions
Get earning dates.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | max amount of upcoming and recent earnings dates to return. Default value 12 should return next 4 quarters and last 8 quarters. Increase if more history is needed. | |
symbol | Yes | Stock symbol in Yahoo Finance format. |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"description": "max amount of upcoming and recent earnings dates to return. Default value 12 should return next 4 quarters and last 8 quarters. Increase if more history is needed.",
"type": "string"
},
"symbol": {
"description": "Stock symbol in Yahoo Finance format.",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}