Crunchbase News Scraper avatar

Crunchbase News Scraper

Pricing

from $3.00 / 1,000 dataset items

Go to Apify Store
Crunchbase News Scraper

Crunchbase News Scraper

Scrape Crunchbase News at scale — funding rounds, M&A, layoffs, IPOs and VC coverage. Filter by keyword, category, tag and date; get clean JSON with authors, categories, tags, images and optional full article text. Great for deal-flow monitoring and lead gen. Pay only for the results you get.

Pricing

from $3.00 / 1,000 dataset items

Rating

5.0

(1)

Developer

axly

axly

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

5 days ago

Last modified

Share

Turn Crunchbase News into a structured dataset. This Actor scrapes news.crunchbase.com — Crunchbase's editorial desk covering funding rounds, M&A, IPOs, layoffs, unicorns and venture-capital moves — and returns clean JSON you can drop into a spreadsheet, database, CRM or AI pipeline. Filter by keyword, category, tag and publish date; optionally pull the full article text.

No login, no API key, no CAPTCHAs — just reliable, well-structured article data.

Who it's for

You are…You use this to…
VC / PE analystMonitor daily funding & M&A coverage; build a date-filtered deal-flow feed
Sales / lead-genSurface companies that just raised (venture/seed/funding categories) as warm outbound leads
Researcher / journalistAssemble topic archives (AI, fintech, crypto, cybersecurity) and startup-trend datasets
Content / SEO teamTrack competitor coverage, authors and headlines over time

What you get — output fields

FieldTypeDescription
article_idintegerStable article identifier
urlstringCanonical article URL
slugstringURL slug
titlestringHeadline (entities decoded)
excerptstringShort summary / dek (plain text)
date_publishedstringPublish datetime (site local, ISO-8601)
date_published_gmtstringPublish datetime (UTC)
date_modifiedstringLast-modified datetime
author_namesarrayAuthor display names
author_slugsarrayAuthor slugs
category_namesarrayCategory names (e.g. Venture, Artificial intelligence, M&A)
category_slugsarrayCategory slugs (e.g. venture, ai, ma)
tag_namesarrayTag names
tag_slugsarrayTag slugs
featured_image_urlstringLead image URL
seo_descriptionstringSEO / OpenGraph description
content_htmlstringFull article HTML (when “Include full article text” is on)
content_textstringFull article plain text (when enabled)
word_countintegerBody word count (when enabled)
scraped_atstringUTC timestamp of the scrape

High-value use cases

  • Deal-flow monitoring — schedule a daily run of categories: ["venture", "seed"] with dateFrom = yesterday to capture every new funding story.
  • Warm-lead generation — filter the funding categories, then push title/url/date_published into your CRM as "recently funded" signals.
  • Sector research — pull the entire ai or fintech-ecommerce archive with includeContent: true for text mining, summarization or embeddings.
  • Competitive/author tracking — group by author_names and category_slugs to see who covers what, and how often.
  • Newsletter / alerting — keyword-search (e.g. "acquisition") on a schedule and forward new hits via webhook.

Input parameters

FieldTypeDefaultDescription
searchQuerystringFull-text search across title and body
categoriesarrayCategory slugs or names; OR-combined (e.g. venture, ai, ma, ipo, seed, crypto, fintech-ecommerce, cybersecurity)
tagsarrayTag slugs or names; OR-combined
dateFromstringPublished on/after (ISO date or datetime)
dateTostringPublished on/before (ISO date or datetime)
includeContentbooleanfalseInclude full article HTML + plain text + word count
sortByenumdatedate or relevance (relevance needs a search keyword)
orderenumdescdesc (newest first) or asc
maxItemsinteger100Stop after this many articles
proxyConfigurationobjectoffOptional; not needed (the site is open)

Example input

{
"searchQuery": "AI funding",
"categories": ["venture"],
"dateFrom": "2026-01-01",
"includeContent": false,
"sortBy": "date",
"order": "desc",
"maxItems": 100
}

Example output row

{
"article_id": 94018,
"url": "https://news.crunchbase.com/venture/biotech-startup-investment-exits-steady-ai-2026/",
"title": "Biotech Startup Investment Held Steady Even As AI Funding Surged",
"excerpt": "Venture funding to biotech startups held roughly flat in the first half…",
"date_published": "2026-08-31T04:00:52",
"author_names": ["Joanna Glasner"],
"category_names": ["Artificial intelligence", "Health, Wellness & Biotech", "Venture"],
"category_slugs": ["ai", "health-wellness-biotech", "venture"],
"tag_names": ["biotech"],
"featured_image_url": "https://news.crunchbase.com/wp-content/uploads/concentrated-capital.jpg",
"scraped_at": "2026-09-10T02:38:11+00:00"
}

Scheduling & integrations

  • Schedule runs (hourly/daily) from the Apify Console to build a live news feed.
  • Webhooks — trigger a downstream service on run completion.
  • Integrations — export to Google Sheets, Airtable, S3, or push to Make/Zapier.
  • Storage — every run writes a dataset you can pull via the Apify API in JSON, CSV, Excel or RSS.

Use with AI assistants (MCP)

This Actor works as a tool for AI agents via the Apify MCP server, so an assistant (Claude, ChatGPT, etc.) can fetch Crunchbase News on demand — e.g. "get this week's AI funding articles" — and reason over the structured rows.

Incremental scraping

Pass dateFrom (and optionally dateTo) to pull only articles in a window. For a daily monitor, set dateFrom to the previous run's date and let order: desc surface the newest stories first. The Actor de-duplicates within a run and resumes cleanly if interrupted.

FAQ

Is there a result limit? No hard cap — maxItems controls run size. Crunchbase News has ~8,700 articles total; a single category can exceed 5,000. For very large unfiltered pulls, narrow with a date range (the source paginates up to ~100 pages per query).

How fresh is the data? Live. Each run hits the site's current WordPress API, so you get articles the moment they're published.

Does it need proxies or logins? No. Crunchbase News is a public site with no anti-bot gate — the Actor runs without proxies or credentials.

Is this the same as company/funding profiles? No. This Actor covers Crunchbase News articles, not the company/investor profile database (a separate, license-gated product). If you need company profiles, use a dedicated Crunchbase company Actor.

Is scraping this legal? The Actor collects publicly available editorial content and is intended for research, monitoring and analysis. You are responsible for how you use the data and for complying with Crunchbase's terms and applicable law.

Reliability? The backend is a stable WordPress REST API with retry/backoff and schema-consistent output, so integrations don't break silently. Fatal errors are monitored.