YC Startup Intelligence Enricher avatar

YC Startup Intelligence Enricher

Pricing

from $7.00 / 1,000 dataset items

Go to Apify Store
YC Startup Intelligence Enricher

YC Startup Intelligence Enricher

Extract 5,800+ Y Combinator startups with founder names, LinkedIn profiles, direct contact emails, phones, and social media handles via deep website enrichment. Filter by batch, industry, status, or hiring status.

Pricing

from $7.00 / 1,000 dataset items

Rating

0.0

(0)

Developer

Saidur Rahman Pulok

Saidur Rahman Pulok

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

10 days ago

Last modified

Share

YC Startup Intelligence & Founder Contact Enricher

Apify Actor TypeScript Crawlee Docker

An advanced data intelligence and prospecting Actor that extracts 5,800+ Y Combinator-backed startups from the official YC directory and deeply enriches them with verified founder names, direct emails, founder & company LinkedIn URLs, phone numbers, and official social media channels.


Overview & Key Capabilities

Traditional YC scrapers only export a basic company directory without decision-maker contacts. This Actor combines the official YC database with deep website content extraction to deliver actionable sales and investment intelligence.

+------------------------+ +---------------------------+ +---------------------------+
| YC Algolia Public API | ---> | Founder Scraper Engine | ---> | Deep Website Crawl |
|5,800+ Companies | | • Founder Names & Roles | | • Direct Corporate Emails |
| • Batch & Statuses | | • Personal LinkedIn/X | | • Social Profiles & Phones|
+------------------------+ +---------------------------+ +---------------------------+

Core Features

  • Complete Directory Coverage: Access all 5,800+ YC startups across every batch (W05 to present).
  • Founder Intelligence: Automatically extracts founder names and personal LinkedIn/X handles.
  • Deep Website Enrichment: Crawls company domains (/contact, /about, /team) to discover public corporate emails, phone lines, and social handles.
  • Granular Filtering: Filter by YC batch (e.g. W24, S23), status (Active, Acquired, Public), industry (AI, B2B, Fintech, Healthcare), and hiring status (isHiring).
  • High-Speed Execution: Directly queries official search endpoints without fragile browser rendering.

Comparison: Traditional Scrapers vs. This Actor

FeatureBasic YC Directory ScrapersYC Startup Intelligence Enricher
Company Name & DescriptionYesYes
Batch, Industry & StatusYesYes
Founder Names & RolesRarely / IncompleteYes (Automated Extraction)
Direct Contact EmailsNoYes (Deep Website Crawl)
Personal & Company LinkedInBasic / MissingYes (Both Company & Founders)
Social Media FootprintNoLinkedIn, Twitter/X, GitHub, FB, IG
CRM / Webhook ReadyBasicJSON, CSV, Excel, n8n, Zapier

Input Parameters

ParameterTypeDefaultDescription
searchQuerystring""Search keyword for company name, technology, or description.
batchstring""Filter by YC batch (e.g. W24, S23, F25).
statusstring""Filter by status: Active, Acquired, Inactive, or Public.
industrystring""Filter by industry (e.g. Healthcare, Fintech, B2B, AI).
regionstring""Filter by region (e.g. United States, Europe).
isHiringbooleanfalseOnly return companies currently hiring.
isTopCompanybooleanfalseOnly return YC top companies.
maxCompaniesinteger100Maximum number of startups to extract (0 for all).
enrichContactsbooleantrueDeep-crawl startup websites for verified emails, phones, and socials.

Sample Input

{
"searchQuery": "AI",
"batch": "W24",
"isHiring": true,
"maxCompanies": 50,
"enrichContacts": true
}

Output Data Structure

The Actor produces clean, structured JSON items in the default dataset:

{
"id": 12345,
"name": "Acme AI",
"slug": "acme-ai",
"website": "https://www.acme-ai.com",
"oneLiner": "Autonomous intelligence workflow engine.",
"longDescription": "Acme AI provides enterprise workflow automation...",
"teamSize": 12,
"ycUrl": "https://www.ycombinator.com/companies/acme-ai",
"batch": "W24",
"status": "Active",
"industries": ["B2B", "Artificial Intelligence"],
"founders": [
{
"name": "Jane Doe",
"title": "Co-Founder & CEO",
"linkedin": "https://www.linkedin.com/in/janedoe"
}
],
"email": "contact@acme-ai.com",
"emails": ["contact@acme-ai.com", "support@acme-ai.com"],
"phone": "+1-415-555-0199",
"linkedin": "https://www.linkedin.com/company/acme-ai",
"twitter": "https://x.com/AcmeAI",
"github": "https://github.com/acme-ai",
"isHiring": true,
"isTopCompany": false,
"scrapedAt": "2026-08-16T12:00:00.000Z",
"enriched": true
}

API & Automation Integration

Python

from apify_client import ApifyClient
client = ApifyClient("YOUR_APIFY_TOKEN")
run_input = {
"batch": "W24",
"isHiring": True,
"maxCompanies": 50,
"enrichContacts": True
}
run = client.actor("constant_hyssop/yc-startup-enricher").call(run_input=run_input)
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
print(f"{item['name']} | Email: {item['email']} | Founders: {item['founders']}")

Node.js / TypeScript

import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: 'YOUR_APIFY_TOKEN' });
const run = await client.actor('constant_hyssop/yc-startup-enricher').call({
searchQuery: 'Fintech',
maxCompanies: 25,
enrichContacts: true,
});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(`Extracted ${items.length} enriched YC startups.`);

Use Cases

  • Venture Capital & Deal Flow: Source high-velocity startups matching specific investment theses immediately upon batch announcements.
  • B2B Outbound Prospecting: Target funded early-stage startups with direct founder LinkedIn contacts and corporate emails.
  • Talent & Recruitment Agencies: Discover high-growth companies actively hiring engineering and product roles.