Search digitized Swedish historical newspapers (17th century to circa 1908–1910).
Performs OCR full-text search and returns page-level hits with highlighted snippets and image links.
Historical Search & OCR Strategies:
- Fraktur / Gothic Print: 17th to late 19th-century newspapers were mostly printed in Fraktur/blackletter.
OCR engines frequently confuse similar glyphs (e.g. long 's' [ſ] misread as 'f', 'S', or 'l'; 'c' for 'e'; 'rn' for 'm').
- Historical Spelling & Wildcards: Use wildcard '*' or Boolean 'OR' to catch spelling variations
(e.g. 'Carlscrona OR Karlskrona', 'Gustaf OR Gustav', 'Linné OR Linnaeus', or stem wildcards like 'Söder*').
- Two-Stage Workflow:
1. Use this tool ('search_newspapers') for initial discovery of dates, issues, and page numbers.
2. If snippets are cut off or you need surrounding sentences (e.g. destinations, causes of death, full names),
call 'search_in_issue(package_id=..., query=...)' on the matched issue to retrieve complete verbatim quotes.
3. Always present the 'images.preview_width' link so users can visually verify the scanned page if OCR is unclear.
Args:
query: Search term or phrase in Swedish/English (e.g. 'ångfartyg', 'Carl von Linné', 'brand i Karlskrona').
from_date: Start date in 'YYYY-MM-DD' format or simply year 'YYYY' (e.g. '1850').
to_date: End date in 'YYYY-MM-DD' format or simply year 'YYYY' (e.g. '1899').
newspaper: Filter by specific newspaper title (e.g. 'Aftonbladet', 'Dagens Nyheter', 'Post- och inrikes tidningar', 'Göteborgsposten').
sort_by: Sort order: 'relevance' (most relevant), 'date_asc' (oldest first), or 'date_desc' (newest first).
limit: Number of results to return per page (1-100, default 20).
offset: Zero-based starting index for pagination (default 0).
max_snippets: Maximum number of text snippets to include per newspaper page (default 5).