skills/orthogonal-recent-funding-rounds/SKILL.md
Find companies that raised funding recently (last week, last month, etc.) — search recent deals by date range, round type, size, industry, and location. Use when asked about recent funding rounds, new raises, latest deals, or weekly/monthly deal flow.
npx skillsauth add orthogonal-sh/skills recent-funding-roundsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Find companies that recently raised funding using the Fundable API. Filter by date range, round type, deal size, industry, location, and more.
orth api run fundable /companies --body '{
"latest_deal": {
"date_start": "2026-03-13",
"date_end": "2026-03-20"
},
"sort_by": "most_recent_raise",
"page_size": 25
}'
Date calculation: Set
date_startto 7 days before today for "last week", 30 days for "last month". Use ISO 8601 format (YYYY-MM-DD).
orth api run fundable /companies --body '{
"latest_deal": {
"date_start": "2026-03-13",
"date_end": "2026-03-20",
"financing_types": [{"type": "SEED"}],
"size_min": 1000000
},
"company": {
"industries": ["artificial-intelligence"],
"ipo_status": ["private"]
},
"sort_by": "most_recent_raise",
"page_size": 25
}'
latest_deal.date_start — Start date (ISO 8601, e.g. "2026-03-13")latest_deal.date_end — End date (ISO 8601, e.g. "2026-03-20")latest_deal.financing_types — Array of objects: {"type": "SEED"}, {"type": "SERIES_A"}, etc. Supports: SEED, SERIES_A through SERIES_M, SAFE, CONVERTIBLE_NOTE, EQUITY, PREFERRED, DEBT_FINANCING, GRANT, FUNDING_ROUND, and more. Optional modifiers: "pre": true (e.g. Pre-Seed), "extension": truelatest_deal.size_min — Minimum deal size in USDlatest_deal.size_max — Maximum deal size in USDcompany.industries — Industry permalinks (e.g. ["artificial-intelligence", "fintech-e067"])company.locations — Location permalinks (e.g. ["san-francisco-california", "new-york"])company.ipo_status — ["private"] or ["public"]company.employee_count — e.g. ["1-10", "11-50", "51-100"]company.search_query — AI-powered semantic search (e.g. "AI healthcare diagnostics")page — Page number, 0-based (default: 0)page_size — Results per page, 1-100 (default: 10)sort_by — most_recent_raise (default), largest_total_raise, most_funding_rounds, most_investors, and others{
"success": true,
"data": {
"companies": [
{
"id": "uuid",
"name": "Acme Corp",
"domain": "acme.com",
"short_description": "AI-powered solutions...",
"linkedin": "https://linkedin.com/company/acme",
"num_employees": "11-50",
"ipo_status": "private",
"total_raised": 15000000,
"num_funding_rounds": 2,
"num_investors": 5,
"industries": [{"name": "Artificial Intelligence", "permalink": "artificial-intelligence"}],
"location": {
"region": {"name": "North America", "permalink": "north-america"},
"country": {"name": "United States", "permalink": "united-states"},
"state": {"name": "California", "permalink": "california"},
"city": {"name": "San Francisco", "permalink": "san-francisco-california"}
},
"latest_deal": {
"id": "deal-uuid",
"type": "SEED",
"size_native": 5000000,
"date": "2026-03-18T00:00:00Z",
"pre": false,
"extension": false,
"intermediate": "NONE",
"description": {
"short_description": "Acme Corp raised a $5M seed round...",
"long_description": "Acme Corp secured $5 million in seed funding..."
},
"investors": ["investor-uuid-1", "investor-uuid-2"]
}
}
]
},
"meta": {
"total_count": 147,
"page": 0,
"page_size": 25,
"credits_used": 25
}
}
| Use Case | Key Parameters |
|----------|---------------|
| All rounds this week | date_start = 7 days ago, date_end = today |
| Seed rounds this month | + financing_types: [{"type": "SEED"}] |
| Series A+ in fintech | + financing_types: [{"type": "SERIES_A"}, {"type": "SERIES_B"}], industries: ["fintech-e067"] |
| Large rounds ($10M+) | + size_min: 10000000 |
| AI startups in SF | + search_query: "artificial intelligence", locations: ["san-francisco-california"] |
$FUNDABLE_API_KEY[]date -v-7d +%Y-%m-%d (macOS) or date -d '7 days ago' +%Y-%m-%d (Linux)page_size: 100 to get more results per request (max 100)page: 0, page: 1, etc. — check meta.total_count for total resultssort_by is ignored when using search_query (results sort by relevance instead)page_size — use smaller pages if browsingtesting
Download videos from YouTube, Bilibili, Twitter, and thousands of other sites using yt-dlp. Use when the user provides a video URL and wants to download it, extract audio (MP3), download subtitles, or select video quality. Triggers on phrases like "下载视频", "download video", "yt-dlp", "YouTube", "B站", "抖音", "提取音频", "extract audio".
business
Send messages and manage Slack channels. Use when asked to send Slack messages, post to channels, list channels, or fetch message history.
development
Evaluate YC batch companies for investment — scrapes the YC directory, researches each company and its founders (work history, LinkedIn, website), assesses founder-company fit, and exports to Google Sheets with priority rankings. Use when asked to evaluate YC companies, research a YC batch, screen startups, or do due diligence on YC companies.
development
Take screenshots of websites and web pages