get-daily-stock-data
Retrieve daily stock price data for any stock symbol, with options for recent data or extended historical records up to 20 years.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
outputsize | No | Amount of data to return (compact: latest 100 data points, full: up to 20 years of data) | |
symbol | Yes | Stock symbol (e.g., IBM, AAPL) |
Input Schema (JSON Schema)
{
"properties": {
"outputsize": {
"description": "Amount of data to return (compact: latest 100 data points, full: up to 20 years of data)",
"enum": [
"compact",
"full"
],
"type": "string"
},
"symbol": {
"description": "Stock symbol (e.g., IBM, AAPL)",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}