earnings_call_transcript
Fetch earnings call transcripts for specific companies and quarters to analyze corporate performance and management commentary from investor calls.
Instructions
Fetch the earnings call transcript for a given company in a specific quarter
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| symbol | Yes | ||
| quarter | Yes |
Input Schema (JSON Schema)
{
"properties": {
"quarter": {
"type": "string"
},
"symbol": {
"type": "string"
}
},
"required": [
"symbol",
"quarter"
],
"type": "object"
}