guardian_top_stories_by_date
Retrieve top stories from The Guardian archives for a specific date, ranked by editorial priority. Filter by section or adjust the number of stories for tailored results.
Instructions
Get intelligently ranked top stories for a specific date using editorial prioritization
Input Schema
Name | Required | Description | Default |
---|---|---|---|
date | Yes | Date to analyze (YYYY-MM-DD) | |
section | No | Filter by section (optional) | |
story_count | No | Number of top stories to return (default: 10, max: 20) |
Input Schema (JSON Schema)
{
"properties": {
"date": {
"description": "Date to analyze (YYYY-MM-DD)",
"type": "string"
},
"section": {
"description": "Filter by section (optional)",
"type": "string"
},
"story_count": {
"description": "Number of top stories to return (default: 10, max: 20)",
"maximum": 20,
"minimum": 1,
"type": "integer"
}
},
"required": [
"date"
],
"type": "object"
}