finance-search
Search for real-time financial data on stocks, ETFs, cryptocurrencies, and indices using Google Finance. Get current prices, market movements, and relevant news by entering symbols with exchange codes.
Instructions
Search for stocks, indices, mutual funds, currencies, and futures using Google Finance. Use format 'SYMBOL:EXCHANGE'. Stocks: 'AAPL:NASDAQ', 'TSLA:NASDAQ'. ETFs/Index funds: 'SPY:NYSEARCA', 'VTI:NYSEARCA', 'QQQ:NASDAQ', 'VOO:NYSEARCA'. Crypto: 'BTC-USD', 'ETH-USD'. Note: Query 'SPY' (no exchange) returns market overview with S&P 500 related ETFs.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
async | No | Submit search asynchronously | |
include_discover | No | Include discover more section | |
include_markets | No | Include market overview data | |
include_news | No | Include top news | |
max_futures | No | Maximum number of futures chain items to return | |
max_news | No | Maximum number of news articles to return (1 = only top news from Google Finance, >1 = additional news from Brave Search) | |
q | Yes | Stock symbol with exchange in format 'SYMBOL:EXCHANGE'. Examples: 'AAPL:NASDAQ', 'TSLA:NASDAQ', 'MSFT:NASDAQ', 'GOOGL:NASDAQ', 'NVDA:NASDAQ' for stocks. For ETFs/Index funds: 'SPY:NYSEARCA', 'VTI:NYSEARCA', 'QQQ:NASDAQ', 'VOO:NYSEARCA'. For crypto: 'BTC-USD', 'ETH-USD'. Note: Just 'SPY' returns market overview with related ETFs in futures_chain. | |
summary_only | No | Return only essential information (price, movement, news) | |
window | No | Time range for graph data |
Input Schema (JSON Schema)
{
"properties": {
"async": {
"description": "Submit search asynchronously",
"type": "boolean"
},
"include_discover": {
"default": false,
"description": "Include discover more section",
"type": "boolean"
},
"include_markets": {
"default": false,
"description": "Include market overview data",
"type": "boolean"
},
"include_news": {
"default": true,
"description": "Include top news",
"type": "boolean"
},
"max_futures": {
"default": 3,
"description": "Maximum number of futures chain items to return",
"type": "number"
},
"max_news": {
"default": 1,
"description": "Maximum number of news articles to return (1 = only top news from Google Finance, >1 = additional news from Brave Search)",
"type": "number"
},
"q": {
"description": "Stock symbol with exchange in format 'SYMBOL:EXCHANGE'. Examples: 'AAPL:NASDAQ', 'TSLA:NASDAQ', 'MSFT:NASDAQ', 'GOOGL:NASDAQ', 'NVDA:NASDAQ' for stocks. For ETFs/Index funds: 'SPY:NYSEARCA', 'VTI:NYSEARCA', 'QQQ:NASDAQ', 'VOO:NYSEARCA'. For crypto: 'BTC-USD', 'ETH-USD'. Note: Just 'SPY' returns market overview with related ETFs in futures_chain.",
"type": "string"
},
"summary_only": {
"default": true,
"description": "Return only essential information (price, movement, news)",
"type": "boolean"
},
"window": {
"description": "Time range for graph data",
"enum": [
"1D",
"5D",
"1M",
"6M",
"YTD",
"1Y",
"5Y",
"MAX"
],
"type": "string"
}
},
"required": [
"q"
],
"type": "object"
}