get_companies_by_sector
Filter and retrieve companies from the Spanish stock exchange based on specific industry sectors such as Banking, Technology, or Energy.
Instructions
Get companies filtered by sector
Input Schema
Name | Required | Description | Default |
---|---|---|---|
sector | Yes | Sector name or partial match (e.g., Banking, Technology, Energy) |
Input Schema (JSON Schema)
{
"properties": {
"sector": {
"description": "Sector name or partial match (e.g., Banking, Technology, Energy)",
"type": "string"
}
},
"required": [
"sector"
],
"type": "object"
}