fundamentalData_splits
Retrieve historical stock split data for any stock symbol to analyze corporate actions and their impact on share prices. Input a valid symbol for quick access to essential split information.
Instructions
Fetches historical stock split data for a symbol.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
symbol | Yes | The stock symbol (e.g., "IBM"). |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"description": "Parameter schema requiring only a stock symbol.",
"properties": {
"symbol": {
"description": "The stock symbol (e.g., \"IBM\").",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}