Wikipedia Company Intelligence Scraper avatar

Wikipedia Company Intelligence Scraper

Pricing

from $2.00 / 1,000 scraped results

Go to Apify Store
Wikipedia Company Intelligence Scraper

Wikipedia Company Intelligence Scraper

Extract company descriptions, founding date, headquarters, founders, employees, websites, and developer/parent information using Wikipedia data. Supports multiple companies, AI product mapping, and pay-per-event charging.

Pricing

from $2.00 / 1,000 scraped results

Rating

0.0

(0)

Developer

Data Pilot

Data Pilot

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

14 days ago

Last modified

Categories

Share

๐Ÿ“š Wikipedia Company Intelligence Scraper is a powerful Apify Actor designed to discover, track, and collect public company profile data directly from Wikipedia's own API and infobox metadata. This tool provides comprehensive Wikipedia Company Intelligence including founding date, headquarters, founders, employee count, company description, and official website for any company or well-known product name. Whether you're building a company research dashboard, enriching a lead list, or conducting competitive intelligence, the Wikipedia Company Intelligence Scraper delivers actionable Wikipedia Company Intelligence efficiently.

With smart product-to-parent-company resolution, Wikipedia search disambiguation, infobox metadata extraction, and reliable Apify Dataset delivery, the Wikipedia Company Intelligence Scraper ensures comprehensive Wikipedia Company Intelligence coverage across any list of company or product names. It focuses on key Wikipedia Company Intelligence signals including founders, headquarters, and founding date, making it an essential tool for company background research.


๐Ÿ“‹ Table of Contents


๐Ÿ”ฅ Features

  • Product-to-Parent Resolution โ€“ Recognizes well-known AI products (e.g., Claude, ChatGPT, Gemini) and automatically resolves them to their parent company for Wikipedia Company Intelligence.
  • Smart Wikipedia Search โ€“ Searches Wikipedia with multiple query variations and filters out disambiguation pages and unrelated name pages.
  • Infobox Metadata Extraction โ€“ Parses Wikipedia's structured infobox table for founding date, headquarters, founders, employee count, and website.
  • Parent Company Fallback โ€“ If a product page lacks company details, automatically follows the "developer/owner/parent" link to pull data from the parent company's own page.
  • Article Summary Extraction โ€“ Pulls a clean company description from Wikipedia's REST summary API.
  • Text Cleaning โ€“ Strips Wikipedia footnote citations and formatting artifacts from every extracted field.
  • Batch Processing โ€“ Look up any number of company or product names in a single run.
  • Configurable Item Cap โ€“ Control how many Wikipedia Company Intelligence profiles are collected per run.
  • Real-Time Dataset Push โ€“ Pushes all collected Wikipedia Company Intelligence records to Apify Dataset in a single batch.
  • Graceful Error Handling โ€“ Skips a failing lookup without stopping the whole run.

๐Ÿ“Š Data Source

Wikipedia Public API & Article Pages

  • Authority: Wikipedia's own public MediaWiki search API, REST summary API, and rendered article pages
  • Access Method: Direct HTTP requests via urllib.request, with BeautifulSoup parsing infobox HTML
  • Coverage: Any company or product with a public Wikipedia article
  • Data: Article summary text and structured infobox fields
  • Access: Public API and pages, no API key required
  • Update Frequency: Reflects each Wikipedia article's current live state at time of run

โš™๏ธ How It Works

The Wikipedia Company Intelligence Scraper accepts a list of company or product names, first checking each against a built-in product-to-parent-company map (e.g., "Claude" โ†’ "Anthropic"). For each resolved name, it searches Wikipedia to find the best matching article, filtering out disambiguation and unrelated pages. It then fetches the article's summary description and parses the infobox table for founding date, headquarters, founders, employee count, and website. If the resolved page is a product page lacking company details (like founding date or HQ), the Actor follows the developer/owner/parent link on that infobox to pull the missing fields from the parent company's own Wikipedia page. Every successfully resolved Wikipedia Company Intelligence record is collected and pushed to the Apify Dataset in a single batch at the end of the run.

Key Processing Steps:

  1. Input Parsing โ€“ Accept a list of company or product names, plus a max item count
  2. Product Mapping Check โ€“ Resolve known AI products to their parent company name
  3. Company Loop โ€“ Iterate through each Wikipedia Company Intelligence target
  4. Wikipedia Search โ€“ Find the best matching, non-disambiguation article title
  5. Summary Fetch โ€“ Pull the article's clean description from the REST summary API
  6. Infobox Parsing โ€“ Extract founded date, HQ, founders, employees, and website from the infobox table
  7. Text Cleaning โ€“ Strip citation brackets and formatting artifacts from every field
  8. Parent Fallback โ€“ Follow the developer/owner/parent link if key fields are still missing
  9. Item Cap Enforcement โ€“ Stop collecting once the configured maximum item count is reached
  10. Dataset Push โ€“ Push all collected records from the run in a single batch

Key Benefits:

  • Pull Wikipedia Company Intelligence for any company or product name without manual lookup
  • Automatically resolve well-known AI products to their actual parent company
  • Get clean, citation-free company descriptions and structured infobox facts
  • Feed research pipelines, lead enrichment tools, or company background dashboards
  • Batch-process long lists of companies or products in a single run

๐Ÿ“ฅ Input

The Actor accepts the following input parameters:

FieldTypeDefaultDescription
company_namesarray["Claude"]List of company or product names to look up.
search_querystring""Optional single search term, used if company_names is empty.
maxItemsinteger10Maximum number of Wikipedia Company Intelligence profiles to collect.

Example Input:

{
"company_names": ["Claude", "OpenAI", "Notion"],
"maxItems": 10
}

Look Up a Single Company:

{
"company_names": ["Anthropic"]
}

Look Up a Known AI Product:

{
"company_names": ["ChatGPT"]
}

๐Ÿ“ค Output

The Actor pushes Wikipedia Company Intelligence records with the following structure:

FieldTypeDescription
companystringResolved company name, as titled on Wikipedia
foundedstringFounding date, as listed in the Wikipedia infobox
HQstringHeadquarters location, as listed in the Wikipedia infobox
funding_totalstringReserved field; not populated from Wikipedia data (always "N/A")
last_roundstringReserved field; not populated from Wikipedia data (always "N/A")
investorsarrayReserved field; not populated from Wikipedia data (always empty)
foundersarrayList of founder names, as listed in the Wikipedia infobox
employeesstringEmployee count, as listed in the Wikipedia infobox
descriptionstringClean company description from the Wikipedia article summary
websitestringOfficial website URL, as listed in the Wikipedia infobox

Example Wikipedia Company Intelligence Record:

{
"company": "Anthropic",
"founded": "2021",
"HQ": "San Francisco, California, U.S.",
"funding_total": "N/A",
"last_round": "N/A",
"investors": [],
"founders": ["Dario Amodei", "Daniela Amodei"],
"employees": "N/A",
"description": "Anthropic is an American artificial intelligence company...",
"website": "https://www.anthropic.com"
}

๐Ÿงฐ Technical Stack

  • HTTP Client: urllib.request for direct requests to Wikipedia's public APIs and article pages
  • HTML Parsing: BeautifulSoup for infobox table extraction
  • Text Cleaning: re for stripping citation brackets and formatting artifacts
  • JSON Handling: json for parsing Wikipedia API responses
  • Async: asyncio for the Actor's run loop
  • Logging: Apify Actor logging system
  • Platform: Apify Actor serverless environment

๐Ÿ“Š Data Fields Explained

Identity

  • company: The resolved, canonical company name as titled on Wikipedia
  • description: A clean, citation-free summary pulled from the Wikipedia article

Company Details

  • founded: The founding date as listed in the infobox
  • HQ: The headquarters location as listed in the infobox
  • founders: Up to five founder names as listed in the infobox
  • employees: The employee count as listed in the infobox
  • website: The official company website URL

Reserved Fields

  • funding_total, last_round, investors: Included in the output schema for compatibility, but not populated โ€” Wikipedia infoboxes do not reliably expose structured funding data

๐ŸŽฏ Use Cases

  • Company Background Research โ€“ Quickly pull founding date, HQ, and founders for any company
  • Lead Enrichment โ€“ Add basic firmographic context to a list of company names
  • Product-to-Company Mapping โ€“ Resolve well-known AI products to their actual parent company
  • Competitive Research โ€“ Compare founding dates, HQ locations, and team size across companies
  • Academic Research โ€“ Study public company information at scale
  • Content Research โ€“ Source clean, citation-free company descriptions for articles or reports

๐Ÿš€ Quick Start

1. Prepare Input

Go to Apify Console and enter:

{
"company_names": ["Claude", "Notion"]
}

2. Run the Actor

Click Start. The Actor will:

  • Resolve any known product names to their parent company
  • Search Wikipedia for the best matching article
  • Extract description and infobox fields, following the parent link if needed
  • Push all results to the Dataset

3. Monitor Progress

Console shows:

[Company Intelligence Engine] Extracting profile for: ['Claude', 'Notion']
Fetching data for: Claude
Successfully retrieved profile: Anthropic
Done! Saved total 2 company profile(s) to dataset.

4. View & Download Results

  • Results Tab: All Wikipedia Company Intelligence records
  • Export: JSON, CSV, Excel, or HTML
  • Filter: By company name or headquarters
  • API Access: Available via the Apify API

โš™๏ธ Configuration

Single company lookup:

{
"company_names": ["Anthropic"]
}

Batch lookup with item cap:

{
"company_names": ["Claude", "ChatGPT", "Gemini", "Copilot"],
"maxItems": 10
}

Single search query instead of a list:

{
"company_names": [],
"search_query": "Midjourney"
}

๐Ÿ“ˆ Performance

Processing Speed

  • Two to three lightweight HTTP requests per company (search, summary, infobox, plus an optional parent-page fetch)
  • No browser rendering required, so lookups are fast
  • Sequential processing keeps requests polite to Wikipedia's servers

Resource Usage

  • Memory: Low, since no browser instance is launched
  • Network: Two to four requests per company, depending on parent-fallback needs
  • Proxy: Not used โ€” Wikipedia's public API does not require one

โš ๏ธ Important Notes

  • Fair Use: Uses Wikipedia's public API and applies polite, low-volume request patterns
  • Public Data Only: Retrieves only publicly available Wikipedia article and infobox data
  • Attribution: Wikipedia content is available under Creative Commons licensing โ€” attribute Wikipedia when republishing descriptions
  • Legal: Not legal advice โ€” consult qualified professionals before using this data for compliance-sensitive decisions

Data Quality

  • Freshness: Reflects each Wikipedia article's current live state at time of run
  • Completeness: Infobox fields vary by article; some companies may have incomplete data, and funding-related fields are never populated
  • Accuracy: Sourced directly from Wikipedia, which is community-edited and may contain errors or be out of date
  • Verification: Cross-check high-stakes figures against official company sources

Best Practices

  • Use well-known company or product names for the most reliable article matches
  • Expect funding_total, last_round, and investors to always return empty โ€” this Actor does not source funding data
  • Re-run periodically if tracking infobox changes over time
  • Batch multiple names together in one run to reduce overhead
  • For funding, investor, or financial data, pair this Actor with a dedicated financial data source

Terms of Use:

  • Use for legitimate research, enrichment, and analytics purposes
  • Respect Wikipedia's Terms of Use and content licensing (CC BY-SA)
  • Attribute Wikipedia when republishing extracted descriptions
  • Use Wikipedia Company Intelligence data responsibly and in compliance with applicable laws

Disclaimer: Wikipedia Company Intelligence Scraper is provided as-is for research and analytics purposes. Users are responsible for compliance with Wikipedia's terms and all applicable laws. This is not legal advice.


โš–๏ธ Wikipedia Company Intelligence Excellence

This Actor is optimized for Wikipedia Company Intelligence research with:

  • โœ… Smart product-to-parent-company resolution
  • โœ… Disambiguation-aware Wikipedia search
  • โœ… Structured infobox extraction with parent-page fallback
  • โœ… Clean, citation-free descriptions
  • โœ… Real-time Dataset push
  • โœ… Production-ready code