Guess the Wikipedia page using as few sentences as possible.
- Fetches a random Wikipedia article (skips disambiguation and very short pages)
- Extracts plaintext, splits into sentences, and filters out title-revealing sentences
- Shows one sentence first, then you can reveal more hints
- Enter your guess (article title). Capitalization and punctuation don’t matter
- Fewer hints used means a better score. Your best score is saved locally
You can open index.html directly in a modern browser, or serve it locally (recommended for API CORS reliability):
python3 -m http.server 8000 --directory .Open http://localhost:8000/.
npx --yes serve -l 8000 .Open http://localhost:8000/.
- Uses MediaWiki Action API with
origin=*for CORS - Avoids disambiguation pages via
pagepropsand heuristic filtering - Sentences are filtered to reduce obvious title leaks and very short lines
Append ?debugTitle=Albert Einstein to the URL to test a specific page.