search_articles
Search for New York Times articles published within the last 30 days using a specific keyword to find relevant content quickly.
Instructions
Search NYTimes articles from the last 30 days based on a keyword
Input Schema
Name | Required | Description | Default |
---|---|---|---|
keyword | Yes | Keyword to search for in articles |
Input Schema (JSON Schema)
{
"properties": {
"keyword": {
"description": "Keyword to search for in articles",
"type": "string"
}
},
"required": [
"keyword"
],
"type": "object"
}