bing_news_search
Search for current news articles by specifying a query, result count, market, and freshness period using the Bing News Search API.
Instructions
Searches for news articles using Bing News Search API for current events and timely information.
Args:
query: News search query (required)
count: Number of results (1-50, default 10)
market: Market code like en-US, en-GB, etc.
freshness: Time period of news (Day, Week, Month)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
count | No | ||
freshness | No | Day | |
market | No | en-US | |
query | Yes |
Input Schema (JSON Schema)
{
"properties": {
"count": {
"default": 10,
"title": "Count",
"type": "integer"
},
"freshness": {
"default": "Day",
"title": "Freshness",
"type": "string"
},
"market": {
"default": "en-US",
"title": "Market",
"type": "string"
},
"query": {
"title": "Query",
"type": "string"
}
},
"required": [
"query"
],
"title": "bing_news_searchArguments",
"type": "object"
}