Provenance
Freshness & coverage
Methods (15)
getCompanyProfile
readCompany overview (sector, industry, cap, CEO).
Required paramssymbolInput schema
{ "type": "object", "properties": { "symbol": { "type": "string" } }, "additionalProperties": false, "required": [ "symbol" ] }searchCompanies
readSearch companies by name or ticker (Financial Modeling Prep).
Required paramsqueryInput schema
{ "type": "object", "properties": { "query": { "type": "string" }, "limit": { "type": "number" }, "exchange": { "type": "string" } }, "additionalProperties": false, "required": [ "query" ] }getPeerComparison
readPeer company list (Financial Modeling Prep).
Required paramssymbolInput schema
{ "type": "object", "properties": { "symbol": { "type": "string" } }, "additionalProperties": false, "required": [ "symbol" ] }getIncomeStatement
readP&L statements (annual or quarter).
Required paramssymbolInput schema
{ "type": "object", "properties": { "symbol": { "type": "string" }, "period": { "oneOf": [ { "type": "string", "enum": [ "annual" ] }, { "type": "string", "enum": [ "quarter" ] } ] }, "limit": { "type": "number" } }, "additionalProperties": false, "required": [ "symbol" ] }getBalanceSheet
readBalance sheet (annual or quarter).
Required paramssymbolInput schema
{ "type": "object", "properties": { "symbol": { "type": "string" }, "period": { "oneOf": [ { "type": "string", "enum": [ "annual" ] }, { "type": "string", "enum": [ "quarter" ] } ] }, "limit": { "type": "number" } }, "additionalProperties": false, "required": [ "symbol" ] }getCashFlowStatement
readCash flow statement (annual or quarter).
Required paramssymbolInput schema
{ "type": "object", "properties": { "symbol": { "type": "string" }, "period": { "oneOf": [ { "type": "string", "enum": [ "annual" ] }, { "type": "string", "enum": [ "quarter" ] } ] }, "limit": { "type": "number" } }, "additionalProperties": false, "required": [ "symbol" ] }getKeyMetrics
readKey financial metrics.
Required paramssymbolInput schema
{ "type": "object", "properties": { "symbol": { "type": "string" }, "period": { "oneOf": [ { "type": "string", "enum": [ "annual" ] }, { "type": "string", "enum": [ "quarter" ] } ] }, "limit": { "type": "number" } }, "additionalProperties": false, "required": [ "symbol" ] }getFinancialRatios
readStandard financial ratios.
Required paramssymbolInput schema
{ "type": "object", "properties": { "symbol": { "type": "string" }, "period": { "oneOf": [ { "type": "string", "enum": [ "annual" ] }, { "type": "string", "enum": [ "quarter" ] } ] }, "limit": { "type": "number" } }, "additionalProperties": false, "required": [ "symbol" ] }getStockPrice
readReal-time stock quote (Financial Modeling Prep).
Required paramssymbolInput schema
{ "type": "object", "properties": { "symbol": { "type": "string" } }, "additionalProperties": false, "required": [ "symbol" ] }getHistoricalPrice
readHistorical daily OHLCV.
Required paramssymbolInput schema
{ "type": "object", "properties": { "symbol": { "type": "string" }, "from": { "type": "string" }, "to": { "type": "string" } }, "additionalProperties": false, "required": [ "symbol" ] }getInstitutionalOwnership
read13F institutional holders.
Required paramssymbolInput schema
{ "type": "object", "properties": { "symbol": { "type": "string" } }, "additionalProperties": false, "required": [ "symbol" ] }getInsiderTrading
readInsider (Form 4) transactions (Financial Modeling Prep).
Required paramssymbolInput schema
{ "type": "object", "properties": { "symbol": { "type": "string" }, "limit": { "type": "number" } }, "additionalProperties": false, "required": [ "symbol" ] }getEarningsCalendar
readUpcoming earnings.
Input schema
{ "type": "object", "properties": { "from": { "type": "string" }, "to": { "type": "string" } }, "additionalProperties": false }getESGScore
readESG (E/S/G) scores.
Required paramssymbolInput schema
{ "type": "object", "properties": { "symbol": { "type": "string" } }, "additionalProperties": false, "required": [ "symbol" ] }getCommodityPrices
readCommodity quote snapshot.
Input schema
{ "type": "object", "properties": { "symbols": { "type": "string" } }, "additionalProperties": false }
