Tools / Wikipedia Lookup
Wikipedia Lookup icon

Wikipedia Lookup

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.

5 skillsv0.02
Search Wikipedia

Search Wikipedia articles by keyword or phrase. Returns matching articles with titles, excerpts, descriptions, and thumbnails.

Returns: List of matching Wikipedia articles with title, excerpt, description, thumbnail URL, and article link
Parameters
query *stringSearch query — keywords or phrase to find articles about
limitnumberMaximum number of results to return (1-50)
languagestringWikipedia language code (e.g. "en", "es", "fr", "de", "ja")
Example
Search for articles about quantum computing
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{
  "tool": "wikipedia-lookup",
  "skill": "search",
  "input": {
    "query": "quantum computing"
  }
}' \
  https://api.toolrouter.com/v1/tools/call
Get Article Summary

Get a concise summary of any Wikipedia article by title. Returns the article description, summary text, thumbnail, coordinates (for places), and direct URLs.

Returns: Article summary with title, description, plain text extract, thumbnail, article URL, and coordinates if applicable
Parameters
title *stringWikipedia article title (e.g. "Albert Einstein", "Tokyo", "Python (programming language)")
languagestringWikipedia language code (e.g. "en", "es", "fr", "de", "ja")
Example
Get a summary of the article about Albert Einstein
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{
  "tool": "wikipedia-lookup",
  "skill": "get_summary",
  "input": {
    "title": "Albert Einstein"
  }
}' \
  https://api.toolrouter.com/v1/tools/call
Get Full Article

Get 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.

Returns: Full plain text article content with metadata, truncated at max_length if the article exceeds it
Parameters
title *stringWikipedia article title (e.g. "World War II", "Machine learning")
languagestringWikipedia language code (e.g. "en", "es", "fr", "de", "ja")
max_lengthnumberMaximum character length of returned content (100-50000)
Example
Get the full article about machine learning
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/call
On This Day

Get historical events, births, deaths, or notable happenings for any date. Returns a list of events with year and linked Wikipedia articles.

Returns: List of historical events for the given date, each with descriptive text, year, and up to 3 linked Wikipedia articles
Parameters
month *numberMonth of the year (1-12)
day *numberDay of the month (1-31)
typestringType of historical entries to retrieve
Example
Get notable events that happened on July 4th
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/call
Random Article

Get a random Wikipedia article summary. Great for discovery, trivia, or serendipitous learning. Returns the same format as get_summary.

Returns: Random Wikipedia article summary with title, description, extract, thumbnail, and article URL
Parameters
languagestringWikipedia language code (e.g. "en", "es", "fr", "de", "ja")
Example
Get a random English Wikipedia article
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{
  "tool": "wikipedia-lookup",
  "skill": "random_article",
  "input": {}
}' \
  https://api.toolrouter.com/v1/tools/call
Loading reviews...
Loading activity...
v0.022026-03-22
  • Added subtitle, expanded description, and agent instructions
v0.012026-03-20
  • Initial release with search, summary, full article, on this day, and random article skills

Quick Start

MCP (Claude Code)
claude mcp add --transport stdio \
  --env TOOLROUTER_API_KEY=YOUR_API_KEY \
  toolrouter -- npx -y toolrouter-mcp
REST API
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{"tool":"wikipedia-lookup","skill":"search","input":{}}' \
  https://api.toolrouter.com/v1/tools/call

Use Cases

Open Quick Fact-Checking

Quick Fact-Checking

Rapidly verify facts, dates, statistics, and claims by pulling authoritative information from Wikipedia.

Wikipedia Lookup icon
Wikipedia Lookup
4 agent guides
Open Research Topic Background

Research Topic Background

Get comprehensive background information on any topic using Wikipedia summaries and full articles.

Wikipedia Lookup icon
Wikipedia Lookup
4 agent guides
Open Search Papers by Topic

Search Papers by Topic

Find relevant academic papers on any research topic across millions of scholarly publications.

Academic Research icon
Academic Research
4 agent guides
Open Geocode Addresses to Coordinates

Geocode Addresses to Coordinates

Convert street addresses into precise latitude and longitude coordinates for mapping and spatial analysis.

Address Geocoding icon
Address Geocoding
4 agent guides
View all use cases for Wikipedia Lookup

Workflows

Open Academic Literature Pipeline

Academic Literature Pipeline

Build a thorough literature review by searching academic databases, expanding with scholar search, adding background context, and synthesizing findings.

Academic Research icon
Academic Research
Web Search icon
Web Search
Wikipedia Lookup icon
Wikipedia Lookup
Deep Research icon
Deep Research
4 steps4 tools
Open Scientific Review Builder

Scientific Review Builder

Build a scientific review by systematically searching papers, establishing background context, synthesizing evidence, and visualizing research patterns.

Academic Research icon
Academic Research
Wikipedia Lookup icon
Wikipedia Lookup
Deep Research icon
Deep Research
Generate Chart icon
Generate Chart
4 steps4 tools
Open Knowledge Base Builder

Knowledge Base Builder

Build comprehensive knowledge bases by combining encyclopedia, academic, deep research, and web sources.

Wikipedia Lookup icon
Wikipedia Lookup
Academic Research icon
Academic Research
Deep Research icon
Deep Research
Web Search icon
Web Search
4 steps4 tools
Open Team Trivia Generator

Team Trivia Generator

Create engaging trivia quizzes with general knowledge, fun facts, and current sports scores.

Trivia Quiz icon
Trivia Quiz
Wikipedia Lookup icon
Wikipedia Lookup
Sports Scores icon
Sports Scores
3 steps3 tools
View all 5workflows →

Frequently Asked Questions

Can I search Wikipedia by keyword first?

Yes. `search` finds matching articles by keyword and helps you narrow down the right title before you fetch a summary or full article.

What is the difference between summary and full article lookup?

`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`.

Can I look up events for a specific date?

Yes. `on_this_day` returns historical events for a month and day, plus linked articles for extra context.

Can I use non-English Wikipedia editions?

Yes. The tool supports 50+ language editions. Pass the `language` you want, and remember that article titles are case-sensitive.