Financial Modeling Prep
stockScreener
Discover stocks that align with your investment strategy using the FMP Stock Screener API. Filter stocks based on market cap, price, volume, beta, sector, country, and more to identify the best opportunities.
Remote cfocoder/financial-modeling-prep-mcp-server
Other tools also called stockScreener?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"isEtf": {
"type": "boolean",
"description": "Filter ETFs"
},
"limit": {
"type": "number",
"description": "Limit number of results"
},
"isFund": {
"type": "boolean",
"description": "Filter funds"
},
"sector": {
"type": "string",
"description": "Filter by sector (e.g., Technology)"
},
"country": {
"type": "string",
"description": "Filter by country (e.g., US)"
},
"exchange": {
"type": "string",
"description": "Filter by exchange (e.g., NASDAQ)"
},
"industry": {
"type": "string",
"description": "Filter by industry (e.g., Consumer Electronics)"
},
"betaMoreThan": {
"type": "number",
"description": "Filter companies with beta greater than this value"
},
"betaLowerThan": {
"type": "number",
"description": "Filter companies with beta less than this value"
},
"priceMoreThan": {
"type": "number",
"description": "Filter companies with price greater than this value"
},
"priceLowerThan": {
"type": "number",
"description": "Filter companies with price less than this value"
},
"volumeMoreThan": {
"type": "number",
"description": "Filter companies with volume greater than this value"
},
"volumeLowerThan": {
"type": "number",
"description": "Filter companies with volume less than this value"
},
"dividendMoreThan": {
"type": "number",
"description": "Filter companies with dividend greater than this value"
},
"dividendLowerThan": {
"type": "number",
"description": "Filter companies with dividend less than this value"
},
"isActivelyTrading": {
"type": "boolean",
"description": "Filter actively trading companies"
},
"marketCapMoreThan": {
"type": "number",
"description": "Filter companies with market cap greater than this value"
},
"marketCapLowerThan": {
"type": "number",
"description": "Filter companies with market cap less than this value"
},
"includeAllShareClasses": {
"type": "boolean",
"description": "Include all share classes"
}
}
}