Financial Modeling Prep
getHistoricalMarketCap
Access historical market capitalization data for a company using the FMP Historical Market Capitalization API. This API helps track the changes in market value over time, enabling long-term assessments of a company's growth or decline.
Remote cfocoder/financial-modeling-prep-mcp-server
Other tools also called getHistoricalMarketCap?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"to": {
"type": "string",
"description": "End date (YYYY-MM-DD)"
},
"from": {
"type": "string",
"description": "Start date (YYYY-MM-DD)"
},
"limit": {
"type": "number",
"description": "Limit on number of results (default: 100, max: 5000)"
},
"symbol": {
"type": "string",
"description": "Stock symbol"
}
}
}