← Back to list

serpapi
by vm0-ai
⭐ 4🍴 1📅 Jan 24, 2026
SKILL.md
name: serpapi description: Search Google for company profiles, product pages, and reviews using SerpAPI
SerpAPI Skill
This skill uses SerpAPI to perform Google searches and Google News searches. It's useful for finding company profiles on various platforms and discovering news articles.
When to Use
Use this skill when:
- You need to find company profiles on Crunchbase, WellFound, LinkedIn
- You want to search for pricing pages or product features
- You need to find customer reviews on Trustpilot, ProductHunt
- You want to find recent news articles about a company
How to Use
Prerequisites
SERPAPI_API_KEYenvironment variable must be set
Basic Usage
# Regular Google search
search.sh "query" [num_results]
# Google News search
news-search.sh "query"
Parameters
| Parameter | Required | Default | Description |
|---|---|---|---|
| query | Yes | - | The search query |
| num_results | No | 10 | Number of results to return (max 100) |
Examples
# Find Crunchbase profile
search.sh "site:crunchbase.com/organization notion"
# Find WellFound profile
search.sh "site:wellfound.com/company notion"
# Find LinkedIn company page
search.sh "site:linkedin.com/company notion"
# Find pricing page
search.sh "notion pricing plans"
# Find reviews
search.sh "notion reviews site:trustpilot.com OR site:producthunt.com" 5
# Find news articles
news-search.sh "notion funding announcement"
Output
search.sh
Results are saved to /tmp/data/search_[timestamp].json:
{
"organic_results": [
{
"position": 1,
"title": "Notion - Crunchbase Company Profile",
"link": "https://www.crunchbase.com/organization/notion",
"snippet": "Notion is a collaboration platform...",
"source": "Crunchbase"
}
]
}
news-search.sh
Results are saved to /tmp/data/news_[timestamp].json:
{
"news_results": [
{
"position": 1,
"title": "Notion Raises $275M Series C",
"link": "https://techcrunch.com/...",
"snippet": "Notion announced today...",
"source": "TechCrunch",
"date": "2 days ago"
}
]
}
Guidelines
- Use site-specific queries for targeted searches (e.g.,
site:crunchbase.com) - Limit results to reduce API usage
- News search is useful for recent company announcements
- Combine multiple sites with OR operator for broader searches
Error Handling
- 401 Unauthorized: Check that SERPAPI_API_KEY is set correctly
- 429 Rate Limited: Wait and retry, consider reducing request frequency
- No Results: Try a broader or alternative query
Score
Total Score
50/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon