Techcrunch Scraper avatar

Techcrunch Scraper

Pricing

Pay per event

Go to Apify Store
Techcrunch Scraper

Techcrunch Scraper

Scrape TechCrunch articles. Search by keyword or browse latest posts. Get titles, authors, categories, excerpts, and publication dates. Export to JSON, CSV, or Excel.

Pricing

Pay per event

Rating

0.0

(0)

Developer

Stas Persiianenko

Stas Persiianenko

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

Categories

Share

Scrape articles from TechCrunch, the leading technology news publication. Search by keyword or browse latest posts. Get titles, authors, categories, excerpts, and publication dates.

What does TechCrunch Scraper do?

TechCrunch Scraper uses the WordPress REST API to extract articles from TechCrunch. It fetches article metadata including titles, author names, category tags, excerpts, publication dates, and featured images. Search for specific topics or get the latest articles.

Why scrape TechCrunch?

TechCrunch is one of the most influential technology media outlets, covering startups, venture capital, and emerging tech. It's a primary source for tech industry news and analysis.

Key reasons to scrape it:

  • Market intelligence — Track startup funding announcements and trends
  • Competitive monitoring — Follow coverage of specific companies or sectors
  • Content research — Find trending topics in the tech industry
  • Media analysis — Study coverage patterns and journalist focus areas
  • Investment research — Monitor funding rounds and startup valuations

Use cases

  • Venture capitalists tracking funding announcements and startup coverage
  • PR professionals monitoring tech media for client mentions
  • Startup founders keeping up with industry trends and competitor news
  • Content marketers finding trending tech topics for content strategy
  • Researchers analyzing tech media coverage patterns
  • Newsletter creators sourcing tech news for curated digests

How to scrape TechCrunch

  1. Go to TechCrunch Scraper on Apify Store
  2. Enter a search keyword (or leave empty for latest articles)
  3. Set result limits
  4. Click Start and wait for results
  5. Download data as JSON, CSV, or Excel

Input parameters

ParameterTypeDefaultDescription
searchQuerystring""Search keyword. Leave empty for latest articles
maxArticlesinteger50Maximum articles to return
maxPagesinteger5Max pages (20 articles per page)

Input example

{
"searchQuery": "AI startups",
"maxArticles": 20,
"maxPages": 1
}

Output

Each article in the dataset contains:

FieldTypeDescription
idnumberWordPress post ID
titlestringArticle headline
urlstringFull article URL
excerptstringArticle summary
authorstringAuthor name
categoriesstring[]Article categories (e.g. AI, Startups)
publishedAtstringPublication date and time
modifiedAtstringLast modified date and time
featuredImagestringFeatured image URL
scrapedAtstringISO timestamp of extraction

Output example

{
"id": 3098742,
"title": "Cursor has reportedly surpassed $2B in annualized revenue",
"url": "https://techcrunch.com/2026/03/02/cursor-has-reportedly-surpassed-2b-in-annualized-revenue/",
"excerpt": "The four-year-old startup saw its revenue run rate double over the past three months.",
"author": "Marina Temkin",
"categories": ["Startups", "AI"],
"publishedAt": "2026-03-02T17:53:59",
"modifiedAt": "2026-03-02T17:54:05",
"featuredImage": "https://techcrunch.com/wp-content/uploads/2025/07/opengraph-image.png",
"scrapedAt": "2026-03-03T03:40:50.532Z"
}

Pricing

TechCrunch Scraper uses pay-per-event pricing:

EventPrice
Run started$0.001
Article extracted$0.002 per article

Cost examples

ScenarioArticlesCost
Quick check20$0.041
Weekly digest100$0.201
Monthly archive500$1.001

Platform costs are negligible — typically under $0.005 per run.

Using TechCrunch Scraper with the Apify API

Node.js

import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: 'YOUR_API_TOKEN' });
const run = await client.actor('automation-lab/techcrunch-scraper').call({
searchQuery: 'AI startups',
maxArticles: 20,
});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(`Found ${items.length} articles`);
items.forEach(article => {
console.log(`[${article.categories.join(', ')}] ${article.title} by ${article.author}`);
});

Python

from apify_client import ApifyClient
client = ApifyClient('YOUR_API_TOKEN')
run = client.actor('automation-lab/techcrunch-scraper').call(run_input={
'searchQuery': 'AI startups',
'maxArticles': 20,
})
dataset = client.dataset(run['defaultDatasetId']).list_items().items
print(f'Found {len(dataset)} articles')
for article in dataset:
cats = ', '.join(article['categories'])
print(f"[{cats}] {article['title']} by {article['author']}")

Integrations

TechCrunch Scraper works with all Apify integrations:

  • Scheduled runs — Build a daily digest of tech news
  • Webhooks — Get notified when new articles match your keywords
  • API — Trigger runs and fetch results programmatically
  • Google Sheets — Export articles to a spreadsheet for analysis
  • Slack — Share relevant articles with your team

Connect to Zapier, Make, or Google Sheets for automated workflows.

Tips

  • Leave searchQuery empty to get the most recent articles across all categories
  • Search for company names to track specific startup coverage
  • Filter by categories in the output to focus on Startups, AI, Venture, etc.
  • Monitor author names to follow specific journalists' coverage
  • Schedule daily runs to build a comprehensive news monitoring system
  • Use excerpts for quick scanning before clicking through to full articles

FAQ

Does it include full article text? The scraper extracts excerpts (summaries), not full article body text. This keeps costs low and avoids content licensing concerns.

How far back can I search? The WordPress API allows paginating through TechCrunch's entire article archive — thousands of articles going back years.

Can I filter by category? Search by keyword covers topics effectively. Categories are included in the output for post-scrape filtering.

How often should I run it? TechCrunch publishes 20-50 articles per day. A daily run with maxArticles: 50 captures a full day's coverage.

Is the API rate-limited? TechCrunch's WordPress API handles moderate request volumes. The scraper uses pagination responsibly with built-in delays.