skills/orthogonal-company-funding-search/SKILL.md
Find company funding history, investors, and investment details
npx skillsauth add orthogonal-sh/skills company-funding-searchInstall 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.
Get funding history, investors, and investment details for companies. Two APIs available:
Best for: Looking up a known company's funding history and investors.
Step 1: Start the lookup (POST)
orth run -X POST nyne /company/funding -d '{"company_name":"Anthropic"}'
Returns a request_id. Then poll:
Step 2: Poll for results (GET)
orth run nyne /company/funding -q request_id=YOUR_REQUEST_ID
<details>
<summary>curl equivalent</summary>
# Step 1: Start lookup
curl -X POST https://api.orth.sh/v1/run/nyne/company/funding \
-H "Authorization: Bearer $ORTHOGONAL_API_KEY" \
-H "Content-Type: application/json" \
-d '{"company_name":"Anthropic"}'
# Step 2: Poll for results
curl "https://api.orth.sh/v1/run/nyne/company/funding?request_id=YOUR_REQUEST_ID" \
-H "Authorization: Bearer $ORTHOGONAL_API_KEY"
</details>
orth run -X POST nyne /company/funders -d '{"company_domain":"stripe.com"}'
<details>
<summary>curl equivalent</summary>
curl -X POST https://api.orth.sh/v1/run/nyne/company/funders \
-H "Authorization: Bearer $ORTHOGONAL_API_KEY" \
-H "Content-Type: application/json" \
-d '{"company_domain":"stripe.com"}'
</details>
Best for: Finding companies by funding stage, industry, location, etc.
orth run -X POST fiber /v1/natural-language-search/companies -d '{"query":"AI companies that raised Series B in 2024","limit":10}'
<details>
<summary>curl equivalent</summary>
curl -X POST https://api.orth.sh/v1/run/fiber/v1/natural-language-search/companies \
-H "Authorization: Bearer $ORTHOGONAL_API_KEY" \
-H "Content-Type: application/json" \
-d '{"query":"AI companies that raised Series B in 2024","limit":10}'
</details>
Search for investors/VCs (filter-based, not natural language):
orth run -X POST fiber /v1/investor-search -d '{"searchParams":{},"limit":10}'
<details>
<summary>curl equivalent</summary>
curl -X POST https://api.orth.sh/v1/run/fiber/v1/investor-search \
-H "Authorization: Bearer $ORTHOGONAL_API_KEY" \
-H "Content-Type: application/json" \
-d '{"searchParams":{},"limit":10}'
</details>
Returns top investors with:
| Use Case | API | Endpoint | |----------|-----|----------| | "How much has Anthropic raised?" | Nyne | /company/funding | | "Who invested in Stripe?" | Nyne | /company/funders | | "Find Series A AI startups" | Fiber | /v1/natural-language-search/companies | | "Find top VCs" | Fiber | /v1/investor-search | | "Companies that raised $10M+ in 2024" | Fiber | /v1/natural-language-search/companies |
request_id, poll with GET — results take 5-20 secondscompany_name works better than company_domain for Nyne lookupstesting
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