guardian_browse_section
Retrieve recent articles from a specific Guardian section by specifying the section ID, days back, and page size. Access full-text archives dating back to 1999 for comprehensive research or news tracking.
Instructions
Browse recent articles from a specific Guardian section
Input Schema
Name | Required | Description | Default |
---|---|---|---|
days_back | No | How many days back to search (default: 7) | |
page_size | No | Number of results, max 200 (default: 20) | |
section | Yes | Section ID (use guardian_get_sections to find valid IDs) |
Input Schema (JSON Schema)
{
"properties": {
"days_back": {
"description": "How many days back to search (default: 7)",
"maximum": 365,
"minimum": 1,
"type": "integer"
},
"page_size": {
"description": "Number of results, max 200 (default: 20)",
"maximum": 200,
"minimum": 1,
"type": "integer"
},
"section": {
"description": "Section ID (use guardian_get_sections to find valid IDs)",
"type": "string"
}
},
"required": [
"section"
],
"type": "object"
}