skills/capabilities/orthogonal-company-funding-search/SKILL.md
Find company funding history, investors, and investment details
npx skillsauth add athina-ai/goose-skills orthogonal-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.
Read your credentials from ~/.gooseworks/credentials.json:
export GOOSEWORKS_API_KEY=$(python3 -c "import json;print(json.load(open('$HOME/.gooseworks/credentials.json'))['api_key'])")
export GOOSEWORKS_API_BASE=$(python3 -c "import json;print(json.load(open('$HOME/.gooseworks/credentials.json')).get('api_base','https://api.gooseworks.ai'))")
If ~/.gooseworks/credentials.json does not exist, tell the user to run: npx gooseworks login
All endpoints use Bearer auth: -H "Authorization: Bearer $GOOSEWORKS_API_KEY"
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)
curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/run \
-H "Authorization: Bearer $GOOSEWORKS_API_KEY" \
-H "Content-Type: application/json" \
-d '{"api":"","path":"","body":{"company_name":"Anthropic"}}'
Returns a request_id. Then poll:
Step 2: Poll for results (GET)
curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/run \
-H "Authorization: Bearer $GOOSEWORKS_API_KEY" \
-H "Content-Type: application/json" \
-d '{"api":"nyne","path":"/company/funding","query":{"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 "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" \
</details>
curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/run \
-H "Authorization: Bearer $GOOSEWORKS_API_KEY" \
-H "Content-Type: application/json" \
-d '{"api":"","path":"","body":{"company_domain":"stripe.com"}}'
<details>
<summary>curl equivalent</summary>
curl -X POST https://api.orth.sh/v1/run/nyne/company/funders \
-H "Content-Type: application/json" \
-d '{"company_domain":"stripe.com"}'
</details>
Best for: Finding companies by funding stage, industry, location, etc.
curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/run \
-H "Authorization: Bearer $GOOSEWORKS_API_KEY" \
-H "Content-Type: application/json" \
-d '{"api":"","path":"","body":{"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 "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):
curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/run \
-H "Authorization: Bearer $GOOSEWORKS_API_KEY" \
-H "Content-Type: application/json" \
-d '{"api":"","path":"","body":{"searchParams":{},"limit":10}}'
<details>
<summary>curl equivalent</summary>
curl -X POST https://api.orth.sh/v1/run/fiber/v1/investor-search \
-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 lookupscontent-media
Takes an existing screen recording or demo video and adds professional zoom/pan effects synchronized to the narration. Uses transcript-driven zoom targeting and Remotion for rendering. Optionally replaces audio with a soundtrack.
tools
Repurposes long-form video (podcasts, interviews, talks) into short-form vertical clips for Instagram Reels, TikTok, and YouTube Shorts. Handles transcription, moment selection, clip extraction, speaker-tracked reframing (16:9 to 9:16), and animated captions.
development
Creates talking head videos from any source material (docs, changelogs, blog posts, notes, transcripts). Produces multi-scene videos with avatar narration over screenshots/images using HeyGen v2 API. Supports Quick Shot and Full Producer modes.
tools
Generates Instagram-ready product reels from any e-commerce product page URL. Scrapes product images, classifies by type, generates AI-animated clips via Higgsfield API, creates text overlays with style presets, and composes a 15-20 second reel with music. Supports model-based and product-only reels.