getEarningsReports
Access detailed earnings reports for any stock symbol, including EPS estimates, revenue projections, and report dates, to analyze company performance with precision.
Instructions
Retrieve in-depth earnings information with the FMP Earnings Report API. Gain access to key financial data for a specific stock symbol, including earnings report dates, EPS estimates, and revenue projections to help you stay on top of company performance.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Optional limit on number of results (default: 100, max: 1000) | |
symbol | Yes | Stock symbol |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"description": "Optional limit on number of results (default: 100, max: 1000)",
"type": "number"
},
"symbol": {
"description": "Stock symbol",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}