guardian_longread
Filter and search The Guardian's Long Read articles by query, date range, and page size to access in-depth journalism efficiently.
Instructions
Search specifically for articles from The Long Read series
Input Schema
Name | Required | Description | Default |
---|---|---|---|
from_date | No | Start date (YYYY-MM-DD format) | |
page | No | Page number (default: 1) | |
page_size | No | Results per page, max 200 (default: 10) | |
query | No | Search terms within Long Read articles | |
to_date | No | End date (YYYY-MM-DD format) |
Input Schema (JSON Schema)
{
"properties": {
"from_date": {
"description": "Start date (YYYY-MM-DD format)",
"type": "string"
},
"page": {
"description": "Page number (default: 1)",
"minimum": 1,
"type": "integer"
},
"page_size": {
"description": "Results per page, max 200 (default: 10)",
"maximum": 200,
"minimum": 1,
"type": "integer"
},
"query": {
"description": "Search terms within Long Read articles",
"type": "string"
},
"to_date": {
"description": "End date (YYYY-MM-DD format)",
"type": "string"
}
},
"type": "object"
}