The Guardian
Search Guardian articles, tags, and sections
The Guardian Open Platform exposes search, tags, and section feeds as JSON. Developer key required (free for non-commercial use); responses include web URL, headline, and body fields.
GET https://content.guardianapis.com/search?show-fields=headline&page-size=1&api-key=test
{
"response": {
"status": "ok",
"userTier": "developer",
"total": 2678048,
"startIndex": 1,
"pageSize": 1,
"currentPage": 1,
"pages": 2678048,
"orderBy": "newest"
}
}curl "https://content.guardianapis.com/search?show-fields=headline&page-size=1&api-key=test"const res = await fetch("https://content.guardianapis.com/search?show-fields=headline&page-size=1&api-key=test");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://content.guardianapis.com/search?show-fields=headline&page-size=1&api-key=test")
print(res.json())/search?show-fields=headline&page-size=1&api-key=testPROBEDSearch Guardian articles, tags, and sections
/search?limit=5Search by query parameters.
/search?page=1Search by query parameters.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
The Guardian: common questions
Is The Guardian free to use?
Yes — The Guardian is a free open data API. Free tier: Free developer key — registration required. Whether the free tier allows commercial use is unclear — check the provider docs.
Does The Guardian need an API key?
Yes — The Guardian needs a free API key, which you pass on each request. Rate limits: 5000 calls/day (developer tier).
Can I call The Guardian from the browser?
Yes — The Guardian returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is The Guardian up right now?
As of our last scheduled check, The Guardian is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.