TechCrunch
Overview
Leading tech news outlet covering startups, venture capital, AI, and technology. Built on WordPress with a public WP REST API at techcrunch.com/wp-json/wp/v2/.
Workflows
Search for articles on a topic
searchArticles(search) → id, title, excerpt, date
getArticle(id) → content.rendered, title, date, _embedded.author
Get the latest tech news
getLatest() → id, title, excerpt, date, link
getArticle(id) → content.rendered, title, date
Browse articles by category
getCategory(categories) → id, title, excerpt, date
getArticle(id) → content.rendered, title, date
Research a topic across categories
searchArticles(search, orderby: date) → id, title, date, categories
getCategory(categories) → compare coverage across categories
Operations
| Operation |
Intent |
Key Input |
Key Output |
Notes |
| searchArticles |
find articles by keyword |
search |
id, title, excerpt, date, link |
entry point, paginated |
| getArticle |
full article content |
id ← searchArticles/getLatest/getCategory |
content.rendered, title, date, _embedded.author |
body is HTML |
| getLatest |
latest articles |
— |
id, title, excerpt, date, link |
entry point, date desc |
| getCategory |
articles in a category |
categories (ID) |
id, title, excerpt, date, link |
entry point, common IDs in param description |
Quick Start
# Search for articles
openweb techcrunch exec searchArticles '{"search": "artificial intelligence"}'
# Get a specific article (use id from search results)
openweb techcrunch exec getArticle '{"id": 3110945}'
# Get latest articles
openweb techcrunch exec getLatest '{}'
# Get AI category articles (category ID 577030455)
openweb techcrunch exec getCategory '{"categories": 577030455}'
1---2name: techcrunch3description: TechCrunch4---5# TechCrunch67## Overview8Leading tech news outlet covering startups, venture capital, AI, and technology. Built on WordPress with a public WP REST API at techcrunch.com/wp-json/wp/v2/.910## Workflows1112### Search for articles on a topic131. `searchArticles(search)` → `id`, `title`, `excerpt`, `date`142. `getArticle(id)` → `content.rendered`, `title`, `date`, `_embedded.author`1516### Get the latest tech news171. `getLatest()` → `id`, `title`, `excerpt`, `date`, `link`182. `getArticle(id)` → `content.rendered`, `title`, `date`1920### Browse articles by category211. `getCategory(categories)` → `id`, `title`, `excerpt`, `date`222. `getArticle(id)` → `content.rendered`, `title`, `date`2324### Research a topic across categories251. `searchArticles(search, orderby: date)` → `id`, `title`, `date`, `categories`262. `getCategory(categories)` → compare coverage across categories2728## Operations2930| Operation | Intent | Key Input | Key Output | Notes |31|-----------|--------|-----------|------------|-------|32| searchArticles | find articles by keyword | search | id, title, excerpt, date, link | entry point, paginated |33| getArticle | full article content | id ← searchArticles/getLatest/getCategory | content.rendered, title, date, _embedded.author | body is HTML |34| getLatest | latest articles | — | id, title, excerpt, date, link | entry point, date desc |35| getCategory | articles in a category | categories (ID) | id, title, excerpt, date, link | entry point, common IDs in param description |3637## Quick Start3839```bash40# Search for articles41openweb techcrunch exec searchArticles '{"search": "artificial intelligence"}'4243# Get a specific article (use id from search results)44openweb techcrunch exec getArticle '{"id": 3110945}'4546# Get latest articles47openweb techcrunch exec getLatest '{}'4849# Get AI category articles (category ID 577030455)50openweb techcrunch exec getCategory '{"categories": 577030455}'51```