Chronicling America
Search millions of digitized historic US newspaper pages
The Library of Congress serves its Chronicling America collection of historic American newspapers as JSON through the loc.gov API. Search by keyword, place or date to retrieve page-level records with titles, dates and image links.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Open provider docs ↗
On our probe schedule. Uptime charts appear after the first check lands.
GET https://www.loc.gov/collections/chronicling-america/?fo=json&c=1&at=results
{
"results": [
{
"title": "The monitor (Omaha, Neb.), July 3, 1915",
"date": "1915-07-03",
"contributor": [
"university of nebraska-lincoln libraries, lincoln, ne"
],
"subject": [
"nebraska",
"douglas",
"united states",
"omaha"
],
"digitized": true,
"language": [
"english"
]
}
]
}curl "https://www.loc.gov/collections/chronicling-america/?fo=json&c=1&at=results"const res = await fetch("https://www.loc.gov/collections/chronicling-america/?fo=json&c=1&at=results");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://www.loc.gov/collections/chronicling-america/?fo=json&c=1&at=results")
print(res.json())/collections/chronicling-america/?fo=json&c=1&at=resultsPROBEDSearch millions of digitized historic US newspaper pages
/collectionsCollections — documented GET route.
/collections/1Collections details by ID (example: 1).
/collections?limit=10Collections — documented GET route.
/collections/search?q=testSearch by query parameters.
/collections/chronicling-america/?limit=5Chronicling America — documented GET route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Not tracked yet. Shape-change history starts once this API joins our probe schedule.
Chronicling America: common questions
Is Chronicling America free to use?
Yes — Chronicling America is a free open data API. Free tier: Free — public-domain collection data. Commercial use is allowed on the free tier.
Does Chronicling America need an API key?
No — Chronicling America needs no API key or signup. You can call it straight away; rate limits still apply (LoC throttles heavy crawling (see LoC API policy)).
Can I call Chronicling America from the browser?
Yes — Chronicling America 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 Chronicling America up right now?
Chronicling America is catalogued but not yet on our probe schedule, so we don't publish a live status for it. Check the provider's own status page or docs for its current state.