getSectorPESnapshot
Retrieve sector-specific P/E ratios by date and exchange to analyze and compare market valuations using Financial Modeling Prep MCP Server. Ideal for assessing sector performance and investment opportunities.
Instructions
Retrieve the price-to-earnings (P/E) ratios for various sectors using the Sector P/E Snapshot API. Compare valuation levels across sectors to better understand market valuations.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
date | Yes | Date (YYYY-MM-DD) | |
exchange | No | Exchange (e.g., NASDAQ) | |
sector | No | Sector (e.g., Energy) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"date": {
"description": "Date (YYYY-MM-DD)",
"type": "string"
},
"exchange": {
"description": "Exchange (e.g., NASDAQ)",
"type": "string"
},
"sector": {
"description": "Sector (e.g., Energy)",
"type": "string"
}
},
"required": [
"date"
],
"type": "object"
}