Quick Fact-Checking
Rapidly verify facts, dates, statistics, and claims by pulling authoritative information from Wikipedia.
Wikipedia search in 50+ languages
Search Wikipedia by keyword, get article summaries, fetch full text, discover historical events for any date, or grab a random article. Supports 50+ language editions. Ideal for background research, fact grounding, entity disambiguation, and knowledge about any topic, person, place, or concept.
Search Wikipedia articles by keyword or phrase. Returns matching articles with titles, excerpts, descriptions, and thumbnails.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "wikipedia-lookup",
"skill": "search",
"input": {
"query": "quantum computing"
}
}' \
https://api.toolrouter.com/v1/tools/callGet a concise summary of any Wikipedia article by title. Returns the article description, summary text, thumbnail, coordinates (for places), and direct URLs.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "wikipedia-lookup",
"skill": "get_summary",
"input": {
"title": "Albert Einstein"
}
}' \
https://api.toolrouter.com/v1/tools/callGet the full plain text content of a Wikipedia article. Use this when you need detailed information beyond the summary. Content is truncated at max_length to control response size.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "wikipedia-lookup",
"skill": "get_full_article",
"input": {
"title": "Machine learning"
}
}' \
https://api.toolrouter.com/v1/tools/callGet historical events, births, deaths, or notable happenings for any date. Returns a list of events with year and linked Wikipedia articles.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "wikipedia-lookup",
"skill": "on_this_day",
"input": {
"month": 7,
"day": 4
}
}' \
https://api.toolrouter.com/v1/tools/callGet a random Wikipedia article summary. Great for discovery, trivia, or serendipitous learning. Returns the same format as get_summary.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "wikipedia-lookup",
"skill": "random_article",
"input": {}
}' \
https://api.toolrouter.com/v1/tools/callclaude mcp add --transport stdio \
--env TOOLROUTER_API_KEY=YOUR_API_KEY \
toolrouter -- npx -y toolrouter-mcpcurl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{"tool":"wikipedia-lookup","skill":"search","input":{}}' \
https://api.toolrouter.com/v1/tools/callRapidly verify facts, dates, statistics, and claims by pulling authoritative information from Wikipedia.
Get comprehensive background information on any topic using Wikipedia summaries and full articles.
Find relevant academic papers on any research topic across millions of scholarly publications.
Convert street addresses into precise latitude and longitude coordinates for mapping and spatial analysis.
Build a thorough literature review by searching academic databases, expanding with scholar search, adding background context, and synthesizing findings.
Build a scientific review by systematically searching papers, establishing background context, synthesizing evidence, and visualizing research patterns.
Build comprehensive knowledge bases by combining encyclopedia, academic, deep research, and web sources.
Create engaging trivia quizzes with general knowledge, fun facts, and current sports scores.
Yes. `search` finds matching articles by keyword and helps you narrow down the right title before you fetch a summary or full article.
`get_summary` gives a concise overview with article metadata, while `get_full_article` returns the full plain-text article up to the length you set with `max_length`.
Yes. `on_this_day` returns historical events for a month and day, plus linked articles for extra context.
Yes. The tool supports 50+ language editions. Pass the `language` you want, and remember that article titles are case-sensitive.