getStockNews
Retrieve news updates for a specific stock ticker symbol directly from Alpha Vantage API. Stay informed about market trends and insights by fetching relevant stock-related news.
Instructions
Get the latest news for a stock ticker symbol using Alpha Vantage API
Input Schema
Name | Required | Description | Default |
---|---|---|---|
symbol | Yes | The stock ticker symbol, e.g., AAPL, MSFT |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"symbol": {
"description": "The stock ticker symbol, e.g., AAPL, MSFT",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}