Resources
6Install
npx skillscat add imoonkey/openweb/src-sites-techcrunch Install via the SkillsCat registry.
About this skill
This skill provides access to TechCrunch's WordPress REST API, enabling search, retrieval, and browsing of technology news articles by topic, category, or recency. It solves the problem of programmatically accessing current tech journalism content without manual web scraping. Developers and agents should use it when building applications that require integration with TechCrunch's news data, such as news aggregators, research tools, or content analysis systems.
SKILL.md
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,dategetArticle(id)→content.rendered,title,date,_embedded.author
Get the latest tech news
getLatest()→id,title,excerpt,date,linkgetArticle(id)→content.rendered,title,date
Browse articles by category
getCategory(categories)→id,title,excerpt,dategetArticle(id)→content.rendered,title,date
Research a topic across categories
searchArticles(search, orderby: date)→id,title,date,categoriesgetCategory(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}'