Nyne - Intelligence & Enrichment API

Intelligence and enrichment - person and company data, social profiles, events, and funding

How to use it

  1. Hit Copy the whole skill.
  2. Claude: ⋯ → Download .md, then Customize → Skills → Add → Upload skill.
    ChatGPT: make a Project and paste it into Instructions.
    Neither? Paste it at the top of a new chat — it works for that chat.
  3. Describe your job in plain words. The AI follows the skill from there.
Claude Code — installs the whole folder, not just SKILL.md
npx degit gooseworks-ai/goose-skills/skills/lead-generation/capabilities/enrichment-nyne#main ~/.claude/skills/enrichment-nyne

For one project only, change the path to .claude/skills/enrichment-nyne.

Not working?
  • Check which app you pasted it into — the steps above name the right one.
  • Some skills need the paid tier of Claude or ChatGPT.
Step-by-step guide with screenshots · Ask in the forum

Paste into Claude, ChatGPT or Cursor.

Show the full text309 lines
enrichment-nyne/SKILL.md309 lines13.1 KBpushed 96d agoRawView on GitHub

Nyne - Intelligence & Enrichment API

Setup

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"

Enrich person and company data with social profiles, events, interests, funding, and more.

Capabilities

  • Person Search: Search people by company, role, geography, and name
  • Person Enrichment: Enrich person data from email, phone, or social URL
  • Person Events: Find life events and career milestones
  • Person Social Profiles: Get all social media profiles for a person
  • Person Single Social Lookup: Look up a specific social media profile
  • Person Interactions: Get social media interactions
  • Person Interests: Get interests, skills, and topics a person engages with
  • Person Newsfeed: Get social media newsfeed data
  • Company Search: Search companies by industry and keywords
  • Company Enrichment: Enrich company data from email, phone, or social URL
  • Company Check Seller: Check if a company sells a specific product/service
  • Company Needs: Analyze company needs from SEC filings and content
  • Company Funding: Get company funding history and investment details
  • Company Funders: Get investors and funders associated with a company

Usage

Person Search

Search people by company name, role, geography, and person name. Returns requestId for polling.

Parameters:

  • query* (string) - Natural language search query (max 1000 chars)
  • limit (integer) - Max results per request (default: 10, max: 100)
  • offset (integer) - Starting position in results (default: 0, max: 999)
  • cursor (string) - Pagination token from previous response
  • request_id (string) - Request ID to continue fetching from same search
  • force_new (boolean) - Force fresh search even if cached (default: false)
  • type (string) - Search tier: light (fastest), medium, premium (best quality). Default: premium
  • show_emails (boolean) - Include email addresses in results (default: false)
  • show_phone_numbers (boolean) - Include phone numbers in results (default: false)
  • require_emails (boolean) - Only return profiles with emails (default: false)
  • require_phone_numbers (boolean) - Only return profiles with phones (default: false)
  • require_phones_or_emails (boolean) - Only return profiles with phone OR email (default: false)
  • insights (boolean) - Include AI-generated relevance insights (default: false, not available for light)
  • high_freshness (boolean) - Prioritize recently updated profiles (default: false, not available for light)
  • profile_scoring (boolean) - Include AI relevance scoring (default: false)
  • callback_url (string) - URL to receive results via webhook
  • custom_filters (object) - Structured filters (locations, industries, titles, 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":"nyne","path":"/person/search","body":{"query":"Software engineers at OpenAI"}}'

Person Enrichment

Enrich a person's profile from email, phone, or social media URL. Returns comprehensive data including work history, education, and social profiles.

Parameters:

  • email (string) - Email address to enrich
  • phone (string) - Phone number to enrich
  • social_media_url (string) - Social media profile URL (LinkedIn, Twitter, etc.)
  • name (string) - Person name to search (used with company)
  • company (string) - Company name to narrow name-based search
  • callback_url (string) - URL to receive results via webhook
  • newsfeed (array) - Social media sources for newsfeed: linkedin, twitter, instagram, github, facebook, or all
  • ai_enhanced_search (boolean) - Enable AI-powered deep search for more social profiles (slower)
  • strict_email_check (boolean) - Enable strict email validation
  • lite_enrich (boolean) - Lightweight enrichment mode (3 credits vs 6, returns only basic fields)
  • probability_score (boolean) - Include confidence score in results
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":"/person/enrichment","body":{"email":"[email protected]"}}'

Person Events

Find life events and career milestones for people at specific events.

Parameters:

  • event* (string) - Event name (e.g., YC Demo Day, TechCrunch Disrupt)
  • company_name (string) - Filter by company to find employees who attended
  • role (string) - Filter by job title (e.g., Founder, CTO)
  • industry (string) - Filter by industry sector
  • location (string) - Geographic filter for attendees
  • callback_url (string) - HTTPS endpoint for automatic delivery
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":"/person/events","body":{"event":"YC Demo Day"}}'

Person Social Profiles

Get all social media profiles associated with a person.

Parameters:

  • email (string) - Email address to look up
  • phone (string) - Phone number to look up
  • social_media_url (string) - Social media profile URL to find other profiles from
  • callback_url (string) - URL to receive results via webhook
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":"/person/social-profiles","body":{"email":"[email protected]"}}'

Person Single Social Lookup

Look up a single social media profile for a person on a specific platform.

Parameters:

  • social_media_url (string) - Social media profile URL to look up from
  • email (string) - Email address to look up from
  • site* (string) - Target social media site: twitter, linkedin, instagram, facebook, tiktok, pinterest, github
  • callback_url (string) - URL to receive results via webhook
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":"/person/single-social-lookup","body":{"email":"[email protected]","site":"linkedin"}}'

Person Interactions

Get social media interactions (replies, followers, following) from a profile.

Parameters:

  • type* (string) - Interaction type: replies, followers, following, or followers,following
  • social_media_url* (string) - Twitter/X or Instagram profile or post URL
  • max_results (integer) - Maximum results to return (default: 100, max: 1000)
  • callback_url (string) - URL to receive results via webhook
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":"/person/interactions","body":{"type":"followers","social_media_url":"https://twitter.com/openai"}}'

Person Interests

Get interests, skills, and topics a person engages with.

Parameters:

  • email (string) - Email address to look up
  • phone (string) - Phone number to look up
  • social_media_url (string) - Social media profile URL
  • callback_url (string) - URL to receive results via webhook
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":"/person/interests","body":{"email":"[email protected]"}}'

Person Newsfeed

Get social media newsfeed data from LinkedIn, Twitter, Instagram, GitHub, or Facebook profiles.

Parameters:

  • social_media_url* (string) - Social media profile URL (LinkedIn, Twitter, Instagram, GitHub, Facebook)
  • callback_url (string) - URL to receive results via webhook
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":"/person/newsfeed","body":{"social_media_url":"https://linkedin.com/in/johndoe"}}'

Company Search

Search for companies by industry focus and website keywords.

Parameters:

  • industry (string) - Industry focus (e.g., Healthcare SaaS). Required if website_keyword not provided
  • website_keyword (string) - Keyword that should appear on company sites (e.g., SOC 2). Required if industry not provided
  • location (string) - Geographic filter (city, region, or country)
  • max_results (integer) - Maximum results (1-50, default: 25)
  • validate_keyword (boolean) - Validate keyword exists on company website HTML
  • callback_url (string) - HTTPS endpoint for automatic delivery
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/search","body":{"industry":"AI","location":"San Francisco"}}'

Company Enrichment

Enrich company data from email, phone, or LinkedIn company URL.

Parameters:

  • email (string) - Company email address to enrich
  • phone (string) - Company phone number to enrich
  • social_media_url (string) - LinkedIn company profile URL
  • callback_url (string) - HTTPS endpoint for automatic delivery
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/enrichment","body":{"social_media_url":"https://linkedin.com/company/openai"}}'

Company Check Seller

Check if a company sells a specific product or service.

Parameters:

  • company_name* (string) - Company name to check
  • product_service* (string) - Product or service to verify (e.g., SOC 2 automation)
  • callback_url (string) - HTTPS endpoint for automatic delivery
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/checkseller","body":{"company_name":"Vanta","product_service":"SOC 2 automation"}}'

Company Needs

Analyze company needs based on SEC filings and provided content.

Parameters:

  • company_name* (string) - Company to analyze (e.g., Uber Technologies, Inc.)
  • content* (string) - Topic to surface (e.g., Regulatory challenges, Supply chain issues)
  • filing (string) - Restrict to filing type (e.g., Form 10-K, Form 8-K)
  • callback_url (string) - HTTPS endpoint for automatic delivery
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/needs","body":{"company_name":"Uber Technologies","content":"Regulatory challenges"}}'

Company Funding

Get company funding history and investment details.

Parameters:

  • company_name (string) - Company name to search (e.g., Stripe, OpenAI)
  • company_domain (string) - Company domain to search (e.g., stripe.com, openai.com)
  • callback_url (string) - HTTPS endpoint for automatic delivery
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","body":{"company_name":"OpenAI"}}'

Company Funders

Get investors and funders associated with a company.

Parameters:

  • company_name (string) - Investor name (e.g., Y Combinator, Sequoia Capital, Andreessen Horowitz)
  • company_domain (string) - Investor domain (e.g., ycombinator.com, sequoiacap.com, a16z.com)
  • callback_url (string) - HTTPS endpoint for automatic delivery
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/funders","body":{"company_name":"OpenAI"}}'

Use Cases

  1. Sales Intelligence: Enrich leads with comprehensive data
  2. Recruiting: Find candidates and their social profiles
  3. Investment Research: Research company funding and investors
  4. Market Research: Track company signals and news
  5. Lead Scoring: Score leads based on interests and events

Discover More

For full endpoint details and parameters:

curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/search \
  -H "Authorization: Bearer $GOOSEWORKS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"prompt":"nyne API endpoints"}' List all endpoints
curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/details \
  -H "Authorization: Bearer $GOOSEWORKS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"api":"nyne","path":"/person/search"}'   # Get endpoint details
1---
2name: enrichment-nyne
3description: Intelligence and enrichment - person and company data, social profiles, events, and funding
4source: orthogonal
5---
6 
7 
8# Nyne - Intelligence & Enrichment API
9 
10## Setup
11 
12Read your credentials from ~/.gooseworks/credentials.json:
13```bash
14export GOOSEWORKS_API_KEY=$(python3 -c "import json;print(json.load(open('$HOME/.gooseworks/credentials.json'))['api_key'])")
15export GOOSEWORKS_API_BASE=$(python3 -c "import json;print(json.load(open('$HOME/.gooseworks/credentials.json')).get('api_base','https://api.gooseworks.ai'))")
16```
17 
18If ~/.gooseworks/credentials.json does not exist, tell the user to run: `npx gooseworks login`
19 
20All endpoints use Bearer auth: `-H "Authorization: Bearer $GOOSEWORKS_API_KEY"`
21 
22 
23Enrich person and company data with social profiles, events, interests, funding, and more.
24 
25## Capabilities
26 
27- **Person Search**: Search people by company, role, geography, and name
28- **Person Enrichment**: Enrich person data from email, phone, or social URL
29- **Person Events**: Find life events and career milestones
30- **Person Social Profiles**: Get all social media profiles for a person
31- **Person Single Social Lookup**: Look up a specific social media profile
32- **Person Interactions**: Get social media interactions
33- **Person Interests**: Get interests, skills, and topics a person engages with
34- **Person Newsfeed**: Get social media newsfeed data
35- **Company Search**: Search companies by industry and keywords
36- **Company Enrichment**: Enrich company data from email, phone, or social URL
37- **Company Check Seller**: Check if a company sells a specific product/service
38- **Company Needs**: Analyze company needs from SEC filings and content
39- **Company Funding**: Get company funding history and investment details
40- **Company Funders**: Get investors and funders associated with a company
41 
42## Usage
43 
44### Person Search
45Search people by company name, role, geography, and person name. Returns requestId for polling.
46 
47Parameters:
48- query* (string) - Natural language search query (max 1000 chars)
49- limit (integer) - Max results per request (default: 10, max: 100)
50- offset (integer) - Starting position in results (default: 0, max: 999)
51- cursor (string) - Pagination token from previous response
52- request_id (string) - Request ID to continue fetching from same search
53- force_new (boolean) - Force fresh search even if cached (default: false)
54- type (string) - Search tier: light (fastest), medium, premium (best quality). Default: premium
55- show_emails (boolean) - Include email addresses in results (default: false)
56- show_phone_numbers (boolean) - Include phone numbers in results (default: false)
57- require_emails (boolean) - Only return profiles with emails (default: false)
58- require_phone_numbers (boolean) - Only return profiles with phones (default: false)
59- require_phones_or_emails (boolean) - Only return profiles with phone OR email (default: false)
60- insights (boolean) - Include AI-generated relevance insights (default: false, not available for light)
61- high_freshness (boolean) - Prioritize recently updated profiles (default: false, not available for light)
62- profile_scoring (boolean) - Include AI relevance scoring (default: false)
63- callback_url (string) - URL to receive results via webhook
64- custom_filters (object) - Structured filters (locations, industries, titles, etc.)
65 
66```bash
67curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/run \
68 -H "Authorization: Bearer $GOOSEWORKS_API_KEY" \
69 -H "Content-Type: application/json" \
70 -d '{"api":"nyne","path":"/person/search","body":{"query":"Software engineers at OpenAI"}}'
71```
72 
73### Person Enrichment
74Enrich a person's profile from email, phone, or social media URL. Returns comprehensive data including work history, education, and social profiles.
75 
76Parameters:
77- email (string) - Email address to enrich
78- phone (string) - Phone number to enrich
79- social_media_url (string) - Social media profile URL (LinkedIn, Twitter, etc.)
80- name (string) - Person name to search (used with company)
81- company (string) - Company name to narrow name-based search
82- callback_url (string) - URL to receive results via webhook
83- newsfeed (array) - Social media sources for newsfeed: linkedin, twitter, instagram, github, facebook, or all
84- ai_enhanced_search (boolean) - Enable AI-powered deep search for more social profiles (slower)
85- strict_email_check (boolean) - Enable strict email validation
86- lite_enrich (boolean) - Lightweight enrichment mode (3 credits vs 6, returns only basic fields)
87- probability_score (boolean) - Include confidence score in results
88 
89```bash
90curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/run \
91 -H "Authorization: Bearer $GOOSEWORKS_API_KEY" \
92 -H "Content-Type: application/json" \
93 -d '{"api":"nyne","path":"/person/enrichment","body":{"email":"[email protected]"}}'
94```
95 
96### Person Events
97Find life events and career milestones for people at specific events.
98 
99Parameters:
100- event* (string) - Event name (e.g., YC Demo Day, TechCrunch Disrupt)
101- company_name (string) - Filter by company to find employees who attended
102- role (string) - Filter by job title (e.g., Founder, CTO)
103- industry (string) - Filter by industry sector
104- location (string) - Geographic filter for attendees
105- callback_url (string) - HTTPS endpoint for automatic delivery
106 
107```bash
108curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/run \
109 -H "Authorization: Bearer $GOOSEWORKS_API_KEY" \
110 -H "Content-Type: application/json" \
111 -d '{"api":"nyne","path":"/person/events","body":{"event":"YC Demo Day"}}'
112```
113 
114### Person Social Profiles
115Get all social media profiles associated with a person.
116 
117Parameters:
118- email (string) - Email address to look up
119- phone (string) - Phone number to look up
120- social_media_url (string) - Social media profile URL to find other profiles from
121- callback_url (string) - URL to receive results via webhook
122 
123```bash
124curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/run \
125 -H "Authorization: Bearer $GOOSEWORKS_API_KEY" \
126 -H "Content-Type: application/json" \
127 -d '{"api":"nyne","path":"/person/social-profiles","body":{"email":"[email protected]"}}'
128```
129 
130### Person Single Social Lookup
131Look up a single social media profile for a person on a specific platform.
132 
133Parameters:
134- social_media_url (string) - Social media profile URL to look up from
135- email (string) - Email address to look up from
136- site* (string) - Target social media site: twitter, linkedin, instagram, facebook, tiktok, pinterest, github
137- callback_url (string) - URL to receive results via webhook
138 
139```bash
140curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/run \
141 -H "Authorization: Bearer $GOOSEWORKS_API_KEY" \
142 -H "Content-Type: application/json" \
143 -d '{"api":"nyne","path":"/person/single-social-lookup","body":{"email":"[email protected]","site":"linkedin"}}'
144```
145 
146### Person Interactions
147Get social media interactions (replies, followers, following) from a profile.
148 
149Parameters:
150- type* (string) - Interaction type: replies, followers, following, or followers,following
151- social_media_url* (string) - Twitter/X or Instagram profile or post URL
152- max_results (integer) - Maximum results to return (default: 100, max: 1000)
153- callback_url (string) - URL to receive results via webhook
154 
155```bash
156curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/run \
157 -H "Authorization: Bearer $GOOSEWORKS_API_KEY" \
158 -H "Content-Type: application/json" \
159 -d '{"api":"nyne","path":"/person/interactions","body":{"type":"followers","social_media_url":"https://twitter.com/openai"}}'
160```
161 
162### Person Interests
163Get interests, skills, and topics a person engages with.
164 
165Parameters:
166- email (string) - Email address to look up
167- phone (string) - Phone number to look up
168- social_media_url (string) - Social media profile URL
169- callback_url (string) - URL to receive results via webhook
170 
171```bash
172curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/run \
173 -H "Authorization: Bearer $GOOSEWORKS_API_KEY" \
174 -H "Content-Type: application/json" \
175 -d '{"api":"nyne","path":"/person/interests","body":{"email":"[email protected]"}}'
176```
177 
178### Person Newsfeed
179Get social media newsfeed data from LinkedIn, Twitter, Instagram, GitHub, or Facebook profiles.
180 
181Parameters:
182- social_media_url* (string) - Social media profile URL (LinkedIn, Twitter, Instagram, GitHub, Facebook)
183- callback_url (string) - URL to receive results via webhook
184 
185```bash
186curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/run \
187 -H "Authorization: Bearer $GOOSEWORKS_API_KEY" \
188 -H "Content-Type: application/json" \
189 -d '{"api":"nyne","path":"/person/newsfeed","body":{"social_media_url":"https://linkedin.com/in/johndoe"}}'
190```
191 
192### Company Search
193Search for companies by industry focus and website keywords.
194 
195Parameters:
196- industry (string) - Industry focus (e.g., Healthcare SaaS). Required if website_keyword not provided
197- website_keyword (string) - Keyword that should appear on company sites (e.g., SOC 2). Required if industry not provided
198- location (string) - Geographic filter (city, region, or country)
199- max_results (integer) - Maximum results (1-50, default: 25)
200- validate_keyword (boolean) - Validate keyword exists on company website HTML
201- callback_url (string) - HTTPS endpoint for automatic delivery
202 
203```bash
204curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/run \
205 -H "Authorization: Bearer $GOOSEWORKS_API_KEY" \
206 -H "Content-Type: application/json" \
207 -d '{"api":"nyne","path":"/company/search","body":{"industry":"AI","location":"San Francisco"}}'
208```
209 
210### Company Enrichment
211Enrich company data from email, phone, or LinkedIn company URL.
212 
213Parameters:
214- email (string) - Company email address to enrich
215- phone (string) - Company phone number to enrich
216- social_media_url (string) - LinkedIn company profile URL
217- callback_url (string) - HTTPS endpoint for automatic delivery
218 
219```bash
220curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/run \
221 -H "Authorization: Bearer $GOOSEWORKS_API_KEY" \
222 -H "Content-Type: application/json" \
223 -d '{"api":"nyne","path":"/company/enrichment","body":{"social_media_url":"https://linkedin.com/company/openai"}}'
224```
225 
226### Company Check Seller
227Check if a company sells a specific product or service.
228 
229Parameters:
230- company_name* (string) - Company name to check
231- product_service* (string) - Product or service to verify (e.g., SOC 2 automation)
232- callback_url (string) - HTTPS endpoint for automatic delivery
233 
234```bash
235curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/run \
236 -H "Authorization: Bearer $GOOSEWORKS_API_KEY" \
237 -H "Content-Type: application/json" \
238 -d '{"api":"nyne","path":"/company/checkseller","body":{"company_name":"Vanta","product_service":"SOC 2 automation"}}'
239```
240 
241### Company Needs
242Analyze company needs based on SEC filings and provided content.
243 
244Parameters:
245- company_name* (string) - Company to analyze (e.g., Uber Technologies, Inc.)
246- content* (string) - Topic to surface (e.g., Regulatory challenges, Supply chain issues)
247- filing (string) - Restrict to filing type (e.g., Form 10-K, Form 8-K)
248- callback_url (string) - HTTPS endpoint for automatic delivery
249 
250```bash
251curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/run \
252 -H "Authorization: Bearer $GOOSEWORKS_API_KEY" \
253 -H "Content-Type: application/json" \
254 -d '{"api":"nyne","path":"/company/needs","body":{"company_name":"Uber Technologies","content":"Regulatory challenges"}}'
255```
256 
257### Company Funding
258Get company funding history and investment details.
259 
260Parameters:
261- company_name (string) - Company name to search (e.g., Stripe, OpenAI)
262- company_domain (string) - Company domain to search (e.g., stripe.com, openai.com)
263- callback_url (string) - HTTPS endpoint for automatic delivery
264 
265```bash
266curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/run \
267 -H "Authorization: Bearer $GOOSEWORKS_API_KEY" \
268 -H "Content-Type: application/json" \
269 -d '{"api":"nyne","path":"/company/funding","body":{"company_name":"OpenAI"}}'
270```
271 
272### Company Funders
273Get investors and funders associated with a company.
274 
275Parameters:
276- company_name (string) - Investor name (e.g., Y Combinator, Sequoia Capital, Andreessen Horowitz)
277- company_domain (string) - Investor domain (e.g., ycombinator.com, sequoiacap.com, a16z.com)
278- callback_url (string) - HTTPS endpoint for automatic delivery
279 
280```bash
281curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/run \
282 -H "Authorization: Bearer $GOOSEWORKS_API_KEY" \
283 -H "Content-Type: application/json" \
284 -d '{"api":"nyne","path":"/company/funders","body":{"company_name":"OpenAI"}}'
285```
286 
287## Use Cases
288 
2891. **Sales Intelligence**: Enrich leads with comprehensive data
2902. **Recruiting**: Find candidates and their social profiles
2913. **Investment Research**: Research company funding and investors
2924. **Market Research**: Track company signals and news
2935. **Lead Scoring**: Score leads based on interests and events
294 
295## Discover More
296 
297For full endpoint details and parameters:
298 
299```bash
300curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/search \
301 -H "Authorization: Bearer $GOOSEWORKS_API_KEY" \
302 -H "Content-Type: application/json" \
303 -d '{"prompt":"nyne API endpoints"}' List all endpoints
304curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/details \
305 -H "Authorization: Bearer $GOOSEWORKS_API_KEY" \
306 -H "Content-Type: application/json" \
307 -d '{"api":"nyne","path":"/person/search"}' # Get endpoint details
308```
309 

Discussion

Alternatives

Also in Services & APIs
Context7Pulls up-to-date, version-specific library docs and code examples into the prompt so the AI stops inventing old APIs.Coding · MITAdaptyv Bio Foundry APIHow to use the Adaptyv Bio Foundry API and Python SDK for protein experiment design, submission, and results retrieval. Use this skill whenever the user mentions Adaptyv, Foundry API, protein binding assays, protein screening experiments, BLI/SPR assays, thermostability assays, or wants to submit protein sequences for experimental characterization. Also trigger when code imports `adaptyv`, `adaptyv_sdk`, or `FoundryClient`, or references `foundry-api-public.adaptyvbio.com`.Science · MIT.NET Backend Development PatternsMaster C#/.NET backend development patterns for building robust APIs, MCP servers, and enterprise applications. Covers async/await, dependency injection, Entity Framework Core, Dapper, configuration, caching, and testing with xUnit. Use when developing .NET backends, reviewing C# code, or designing API architectures.Coding · MITAdd AI protectionProtect AI chat and completion endpoints from abuse — detect prompt injection and jailbreak attempts, block PII and sensitive info from leaking in responses, and enforce token budget rate limits to control costs. Use this skill when the user is building or securing any endpoint that processes user prompts with an LLM, even if they describe it as "preventing jailbreaks," "stopping prompt attacks," "blocking sensitive data," or "controlling AI API costs" rather than naming specific protections.Coding · CC0-1.0