guardian_lookback
Retrieve top stories from The Guardian archives by specifying a date or date range, with options to filter by section and adjust the number of results.
Instructions
Find top stories from a specific date or date range
Input Schema
Name | Required | Description | Default |
---|---|---|---|
date | Yes | Specific date (YYYY-MM-DD) or start of range | |
end_date | No | End date for range (YYYY-MM-DD) | |
page_size | No | Number of results (default: 20) | |
section | No | Filter by section |
Input Schema (JSON Schema)
{
"properties": {
"date": {
"description": "Specific date (YYYY-MM-DD) or start of range",
"type": "string"
},
"end_date": {
"description": "End date for range (YYYY-MM-DD)",
"type": "string"
},
"page_size": {
"description": "Number of results (default: 20)",
"maximum": 200,
"minimum": 1,
"type": "integer"
},
"section": {
"description": "Filter by section",
"type": "string"
}
},
"required": [
"date"
],
"type": "object"
}