search-stock-news
Retrieve filtered stock-related news by specifying a stock symbol, company name, and criteria like max results, search depth, and relevance score. Access tailored financial updates quickly.
Instructions
Search for stock-related news using Tavily API
Input Schema
Name | Required | Description | Default |
---|---|---|---|
companyName | Yes | Company name (e.g., Apple Inc.) | |
maxResults | No | Maximum number of results to return | |
minScore | No | Minimum relevance score threshold | |
searchDepth | No | Search depth level | |
symbol | Yes | Stock symbol (e.g., AAPL) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"companyName": {
"description": "Company name (e.g., Apple Inc.)",
"type": "string"
},
"maxResults": {
"description": "Maximum number of results to return",
"type": "number"
},
"minScore": {
"description": "Minimum relevance score threshold",
"type": "number"
},
"searchDepth": {
"description": "Search depth level",
"enum": [
"basic",
"advanced"
],
"type": "string"
},
"symbol": {
"description": "Stock symbol (e.g., AAPL)",
"type": "string"
}
},
"required": [
"symbol",
"companyName"
],
"type": "object"
}