getFinancialReportJSON
Retrieve SEC annual 10-K reports in JSON format to analyze a company’s financial performance, operations, and risk factors using a stock symbol, year, and period (Q1, Q2, Q3, Q4, FY).
Instructions
Access comprehensive annual reports with the FMP Annual Reports on Form 10-K API. Obtain detailed information about a company’s financial performance, business operations, and risk factors as reported to the SEC.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
period | Yes | Period (Q1, Q2, Q3, Q4, or FY) | |
symbol | Yes | Stock symbol | |
year | Yes | Year of the report |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"period": {
"description": "Period (Q1, Q2, Q3, Q4, or FY)",
"enum": [
"Q1",
"Q2",
"Q3",
"Q4",
"FY"
],
"type": "string"
},
"symbol": {
"description": "Stock symbol",
"type": "string"
},
"year": {
"description": "Year of the report",
"type": "number"
}
},
"required": [
"symbol",
"year",
"period"
],
"type": "object"
}